/* ═══════════════════════════════════════════════
   Maracas Bay Consulting — main.css
   ═══════════════════════════════════════════════ */

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

:root {
    --navy:        #0a3669;
    --navy-dark:   #072a52;
    --navy-light:  #0e4a8a;
    --steel:       #469fb5;
    --steel-light: #6bb8ca;
    --steel-pale:  #e8f4f8;
    --orange:      #f58025;
    --orange-light:#f9a05c;
    --orange-pale: #fef3e8;
    --white:       #ffffff;
    --off-white:   #f8f9fb;
    --gray-100:    #f1f3f6;
    --gray-200:    #e2e6ed;
    --gray-400:    #9aa3b0;
    --gray-600:    #5a6473;
    --gray-800:    #2c3340;
    --serif:       'DM Serif Display', Georgia, serif;
    --sans:        'DM Sans', system-ui, sans-serif;
    --nav-h:       88px;
    --radius:      10px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--gray-800);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
#site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 56px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--gray-600); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a:focus { color: var(--navy); }
.nav-links a.nav-cta,
a.nav-cta {
    background: var(--orange);
    color: var(--white);
    padding: 10px 22px; border-radius: var(--radius);
    font-weight: 500; font-size: 14px;
    transition: background 0.2s;
    text-decoration: none;
}
.nav-links a.nav-cta:hover, a.nav-cta:hover { background: #d96e18; color: var(--white); }

/* Mobile toggle */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
    background: var(--orange); color: var(--white);
    padding: 14px 32px; border-radius: var(--radius);
    font-size: 15px; font-weight: 500;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
    display: inline-block;
}
.btn-primary:hover { background: #d96e18; transform: translateY(-1px); color: var(--white); }

.btn-secondary {
    background: var(--white); color: var(--navy);
    padding: 14px 32px; border-radius: var(--radius);
    font-size: 15px; font-weight: 500; text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    border: 1.5px solid var(--gray-200); display: inline-block;
}
.btn-secondary:hover { background: var(--off-white); border-color: var(--navy); color: var(--navy); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
}
.hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 56px 80px 72px;
}
/* ── Company name ── */
.hero-company-name {
    font-family: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hero-company-name span {
    display: block;
    font-family: 'Montserrat', 'DM Sans', sans-serif;
    font-size: clamp(14px, 1.6vw, 22px);
    font-weight: 600;
    color: var(--orange);
    font-style: normal;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-company-name span::before,
.hero-company-name span::after {
    content: '';
    display: block;
    height: 2px;
    width: 32px;
    background: var(--orange);
    flex-shrink: 0;
    border-radius: 1px;
}

/* ── Badge (base) ── */
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--orange-pale); color: var(--orange);
    font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: 100px;
    margin-bottom: 28px; width: fit-content;
    border: 1.5px solid rgba(245,128,37,0.35);
    position: relative;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    overflow: hidden;
}
/* Shimmer sweep across badge */
.hero-badge::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: badge-shimmer 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes badge-shimmer {
    0%   { left: -100%; }
    40%  { left: 160%; }
    100% { left: 160%; }
}

/* ── Badge animation ── */
.hero-badge--animated {
    animation: badge-entrance 1s cubic-bezier(0.22, 1, 0.36, 1) both,
               badge-float 3s ease-in-out 1s infinite;
    overflow: visible;
}
@keyframes badge-entrance {
    0%   { opacity: 0; transform: translateY(-14px) scale(0.85); }
    60%  { opacity: 1; transform: translateY(3px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-4px); }
}

/* Outer pulse ring 1 */
.hero-badge-pulse {
    position: absolute;
    inset: -3px;
    border-radius: 100px;
    border: 2px solid rgba(245, 128, 37, 0.5);
    animation: pulse-ring1 2.4s ease-out infinite;
    pointer-events: none;
}
/* Outer pulse ring 2 — delayed */
.hero-badge-pulse::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 100px;
    border: 1.5px solid rgba(245, 128, 37, 0.25);
    animation: pulse-ring2 2.4s ease-out 0.6s infinite;
    pointer-events: none;
}
@keyframes pulse-ring1 {
    0%   { transform: scale(1);    opacity: 0.9; }
    60%  { transform: scale(1.45); opacity: 0;   }
    100% { transform: scale(1.45); opacity: 0;   }
}
@keyframes pulse-ring2 {
    0%   { transform: scale(1);    opacity: 0.6; }
    60%  { transform: scale(1.6);  opacity: 0;   }
    100% { transform: scale(1.6);  opacity: 0;   }
}
.hero-badge-dot {
    width: 9px; height: 9px; border-radius: 50%; background: var(--orange);
    animation: dot-blink 1.6s ease-in-out infinite;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(245,128,37,0.5);
}
@keyframes dot-blink {
    0%   { opacity: 1; transform: scale(1);    box-shadow: 0 0 0 0   rgba(245,128,37,0.5); }
    50%  { opacity: 1; transform: scale(1.2);  box-shadow: 0 0 0 5px rgba(245,128,37,0);   }
    100% { opacity: 1; transform: scale(1);    box-shadow: 0 0 0 0   rgba(245,128,37,0);   }
}

.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400; line-height: 1.2; color: var(--navy); margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--steel); }
.hero-sub { font-size: 17px; font-weight: 300; color: var(--gray-600); line-height: 1.75; max-width: 460px; margin-bottom: 48px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.hero-right {
    background: var(--navy);
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 56px; position: relative; overflow: hidden;
}
.hero-card-label { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel-light); margin-bottom: 28px; position: relative; z-index: 1; }
.signal-list-hero { list-style: none; display: flex; flex-direction: column; gap: 0; position: relative; z-index: 1; }
.signal-hero { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: flex-start; gap: 14px; }
.signal-hero:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.signal-icon {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(245,128,37,0.15); border: 1px solid rgba(245,128,37,0.3);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.signal-icon::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.signal-hero-text { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.55; }
.hero-cta-note { margin-top: 36px; font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.6; position: relative; z-index: 1; border-left: 2px solid var(--orange); padding-left: 16px; }

/* ── Compass watermark ── */
.hero-compass-bg {
    position: absolute;
    width: 400px; height: 400px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; z-index: 0;
    animation: compass-spin 80s linear infinite;
}
@keyframes compass-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Blobs */
.diag-blob { position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(70,159,181,0.15) 0%, transparent 65%); pointer-events: none; }
.diag-blob2 { position: absolute; bottom: -80px; left: 20%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(245,128,37,0.1) 0%, transparent 65%); pointer-events: none; }


/* ── TRUST BAR ── */
.trust-bar { background: var(--gray-100); padding: 24px 72px; display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-label { font-size: 12px; font-weight: 500; color: var(--gray-400); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.trust-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-tag { font-size: 13px; font-weight: 400; color: var(--gray-600); padding: 6px 16px; background: var(--white); border-radius: 100px; border: 1px solid var(--gray-200); }

/* ── SECTION SHARED ── */
section { padding: 100px 72px; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--steel); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.section-badge::before { content: ''; display: block; width: 24px; height: 2px; background: var(--steel); border-radius: 2px; }
.section-h2 { font-family: var(--serif); font-size: clamp(36px, 3.5vw, 54px); font-weight: 400; line-height: 1.15; color: var(--navy); margin-bottom: 20px; }
.section-h2 em { font-style: italic; color: var(--steel); }
.section-lead { font-size: 17px; font-weight: 300; color: var(--gray-600); line-height: 1.75; max-width: 540px; }

/* ── ABOUT ── */
.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-pull { font-family: var(--serif); font-size: clamp(24px, 2.5vw, 34px); font-weight: 400; line-height: 1.3; color: var(--navy); margin-bottom: 28px; font-style: italic; padding-left: 24px; border-left: 3px solid var(--orange); }
.about-body { font-size: 16px; font-weight: 300; color: var(--gray-600); line-height: 1.85; margin-bottom: 20px; }
.principles { display: flex; flex-direction: column; gap: 0; }
.principle { padding: 22px 0; border-bottom: 1px solid var(--gray-200); display: grid; grid-template-columns: 36px 1fr; gap: 16px; }
.principle:first-child { border-top: 1px solid var(--gray-200); }
.principle-num { font-family: var(--serif); font-size: 20px; color: var(--orange); padding-top: 2px; }
.principle-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.principle-desc { font-size: 14px; font-weight: 300; color: var(--gray-600); line-height: 1.65; }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card { background: var(--off-white); border-radius: 14px; padding: 40px 36px; border: 1.5px solid var(--gray-200); transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.service-card:hover { border-color: var(--steel); background: var(--white); transform: translateY(-3px); }
.service-num { display: inline-block; background: var(--steel-pale); color: var(--steel); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 20px; }
.service-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--navy); margin-bottom: 14px; line-height: 1.25; }
.service-desc { font-size: 14px; font-weight: 300; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag { font-size: 12px; font-weight: 400; color: var(--gray-600); padding: 4px 12px; border-radius: 100px; background: var(--white); border: 1px solid var(--gray-200); }

/* ── DIAGNOSTIC ── */
.diagnostic { background: var(--navy); padding: 100px 72px; position: relative; overflow: hidden; }
.diagnostic-inner { position: relative; z-index: 1; }
.diagnostic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.diag-label { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel-light); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.diag-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--steel-light); border-radius: 2px; }
.diag-h2 { font-family: var(--serif); font-size: clamp(32px, 3vw, 48px); font-weight: 400; line-height: 1.2; color: var(--white); margin-bottom: 20px; }
.diag-h2 em { font-style: italic; color: var(--steel-light); }
.diag-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 36px; }
.diag-cta-note { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 300; margin-top: 20px; }
.checks { list-style: none; display: flex; flex-direction: column; gap: 0; }
.check-item { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: flex-start; gap: 14px; }
.check-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.check-box { width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; background: rgba(245,128,37,0.15); border: 1px solid rgba(245,128,37,0.35); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.check-box::after { content: '✓'; font-size: 11px; color: var(--orange); font-weight: 600; }
.check-text { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.55; }

/* ── APPROACH ── */
.approach { background: var(--off-white); }
.approach-header { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 64px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { background: var(--white); border-radius: 14px; padding: 36px 32px; border: 1.5px solid var(--gray-200); position: relative; }
.step-accent { position: absolute; top: 0; left: 32px; right: 32px; height: 3px; border-radius: 0 0 4px 4px; }
.step-card:nth-child(1) .step-accent { background: var(--navy); }
.step-card:nth-child(2) .step-accent { background: var(--steel); }
.step-card:nth-child(3) .step-accent { background: var(--orange); }
.step-num { font-family: var(--serif); font-size: 52px; font-weight: 400; color: var(--gray-200); line-height: 1; margin-bottom: 16px; }
.step-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.step-desc { font-size: 14px; font-weight: 300; color: var(--gray-600); line-height: 1.7; }

/* ── WHO ── */
.who { background: var(--white); }
.who-header { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 56px; }
.buyer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.buyer-card { background: var(--off-white); border-radius: 14px; padding: 28px 28px; border: 1.5px solid var(--gray-200); display: flex; gap: 16px; align-items: flex-start; transition: border-color 0.2s, background 0.2s; }
.buyer-card:hover { border-color: var(--steel); background: var(--white); }
.buyer-avatar { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; overflow: hidden; }
.buyer-avatar::before { content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); }
.buyer-avatar::after { content: ''; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.buyer-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.buyer-desc { font-size: 13px; font-weight: 300; color: var(--gray-600); line-height: 1.6; }
.industries { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; }
.ind-tag { font-size: 13px; font-weight: 400; color: var(--gray-600); padding: 8px 18px; border-radius: 100px; border: 1.5px solid var(--gray-200); background: var(--off-white); transition: border-color 0.2s, color 0.2s; }
.ind-tag:hover { border-color: var(--steel); color: var(--steel); }

/* ── CASES ── */
.cases { background: var(--off-white); }
.cases-header { margin-bottom: 52px; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card { background: var(--white); border-radius: 14px; padding: 36px 32px; border: 1.5px solid var(--gray-200); display: flex; flex-direction: column; gap: 16px; transition: border-color 0.2s, transform 0.2s; }
.case-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.case-sector { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); background: var(--orange-pale); padding: 5px 12px; border-radius: 100px; width: fit-content; }
.case-challenge { font-family: var(--serif); font-size: 19px; font-weight: 400; line-height: 1.3; color: var(--navy); }
.case-body { font-size: 14px; font-weight: 300; color: var(--gray-600); line-height: 1.75; flex: 1; }
.case-outcome { font-size: 13px; font-weight: 500; color: var(--navy); padding-top: 16px; border-top: 1px solid var(--gray-200); display: flex; align-items: flex-start; gap: 8px; }
.case-arrow { color: var(--orange); flex-shrink: 0; }

/* ── CTA ── */
.cta-section { background: var(--white); padding: 100px 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-h2 { font-family: var(--serif); font-size: clamp(36px, 3.5vw, 52px); font-weight: 400; line-height: 1.15; color: var(--navy); }
.cta-h2 em { font-style: italic; color: var(--steel); }
.cta-body { font-size: 16px; font-weight: 300; color: var(--gray-600); line-height: 1.85; margin-bottom: 40px; }
.cta-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.cta-detail { font-size: 13px; color: var(--gray-400); }
.cta-detail a { color: var(--steel); text-decoration: none; }
.cta-detail a:hover { text-decoration: underline; }

/* ── FOOTER ── */
#site-footer { background: var(--navy-dark); padding: 60px 72px 36px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-logo-wrap { margin-bottom: 20px; }
.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
.footer-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 340px; }
.footer-nav-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-nav-title { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav-links a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-nav-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-linkedin { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.footer-linkedin:hover { color: var(--steel-light); }

/* ── SINGLE / PAGE ── */
.single-post-wrap, .generic-page-wrap { padding: calc(var(--nav-h) + 60px) 72px 80px; max-width: 860px; margin: 0 auto; }
.article-header { margin-bottom: 40px; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.article-date { font-size: 13px; color: var(--gray-400); }
.article-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); font-weight: 400; line-height: 1.15; color: var(--navy); margin-bottom: 16px; }
.article-excerpt { font-size: 18px; font-weight: 300; color: var(--gray-600); line-height: 1.7; }
.article-thumbnail { margin-bottom: 40px; border-radius: 14px; overflow: hidden; }
.article-thumbnail img { width: 100%; }
.article-content { font-size: 16px; font-weight: 300; color: var(--gray-600); line-height: 1.85; }
.article-content h2 { font-family: var(--serif); font-size: 28px; color: var(--navy); margin: 48px 0 16px; }
.article-content h3 { font-size: 20px; font-weight: 600; color: var(--navy); margin: 36px 0 12px; }
.article-content p { margin-bottom: 20px; }
.article-content a { color: var(--steel); text-decoration: underline; }
.article-footer { margin-top: 60px; padding-top: 32px; border-top: 1px solid var(--gray-200); }
.page-header { margin-bottom: 40px; }
.page-content { font-size: 16px; font-weight: 300; color: var(--gray-600); line-height: 1.85; }
.page-content p { margin-bottom: 20px; }
.page-content a { color: var(--steel); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    #site-nav { padding: 0 32px; }
    section { padding: 80px 40px; }
    .trust-bar { padding: 20px 40px; }
    .diagnostic { padding: 80px 40px; }
    #site-footer { padding: 48px 40px 32px; }
    .single-post-wrap, .generic-page-wrap { padding: calc(var(--nav-h) + 40px) 40px 60px; }
}

@media (max-width: 900px) {
    #site-nav { padding: 0 20px; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 20px 24px; gap: 4px; }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 10px 0; font-size: 16px; border-bottom: 1px solid var(--gray-100); }
    .nav-links a.nav-cta { margin-top: 8px; text-align: center; border-bottom: none; }
    .nav-toggle { display: flex; }
    section { padding: 72px 24px; }
    .trust-bar { padding: 20px 24px; gap: 16px; }
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 60px 24px 40px; }
    .hero-right { padding: 40px 24px 60px; }
    .hero-company-name { font-size: clamp(36px, 8vw, 52px); }
    .hero-compass-bg { width: 280px; height: 280px; }
    .about-grid,
    .services-header,
    .diagnostic-grid,
    .approach-header,
    .who-header,
    .cta-section,
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .services-grid,
    .cases-grid,
    .buyer-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .diagnostic { padding: 72px 24px; }
    #site-footer { padding: 48px 24px 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .single-post-wrap, .generic-page-wrap { padding: calc(var(--nav-h) + 32px) 24px 48px; }
}
