/* ============================================================
   VIAG0 — Shared Stylesheet
   ============================================================ */

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

:root {
    --ink: #0A1628;
    --cream: #F4F1EA;
    --burnt-orange: #E8751A;
    --navy: #1E3A5F;
    --soft-orange: #F4A261;
    --ice-blue: #CADCFC;
    --card-white: #FFFFFF;
    --muted: #6B7280;
    --rule: #D9D4C7;
    --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }

/* ============================================================
   NAV
   ============================================================ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--ink);
    border-bottom: 1px solid rgba(202, 220, 252, 0.08);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 72px;
}
.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 1; }

.nav-links { display: flex; align-items: center; gap: 2.25rem; }

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    color: var(--ice-blue);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--cream); }

.nav-links a.nav-cta {
    background: var(--burnt-orange);
    color: var(--cream);
    padding: 0.55rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
}

.nav-links a.nav-cta:hover {
    background: var(--soft-orange);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ice-blue);
    margin: 5px 0;
    transition: 0.3s;
}

/* ============================================================
   EYEBROW
   ============================================================ */
.eyebrow {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--burnt-orange) !important;
    margin-bottom: 1rem;
}

.on-ink .eyebrow { color: var(--soft-orange) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--ink);
    padding: 9rem 0 5.5rem;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: bold;
    font-style: italic;
    color: var(--cream);
    line-height: 1.2;
    max-width: 820px;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--ice-blue);
    max-width: 640px;
    margin-bottom: 1.75rem;
    line-height: 1.55;
}

.hero-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: var(--ice-blue);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.hero-cta {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--cream);
    background: var(--burnt-orange);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover {
    background: var(--soft-orange);
    transform: translateY(-1px);
}

.hero-stamp {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(202, 220, 252, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-stamp span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    color: var(--ice-blue);
    opacity: 0.6;
}

/* ============================================================
   CREAM SECTION
   ============================================================ */
.section-cream {
    background: var(--cream);
    padding: 5.5rem 0;
    border-bottom: 1px solid var(--rule);
}

.section-cream h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: bold;
    font-style: italic;
    color: var(--ink);
    line-height: 1.25;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.section-cream h3 {
    font-size: 1.2rem;
    font-weight: bold;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.section-cream p:not(.eyebrow) {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.7;
    max-width: 660px;
    margin-bottom: 1.25rem;
}

.section-cream p:last-child { margin-bottom: 0; }

.section-intro {
    font-size: 1.1rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 2.5rem;
    max-width: 620px;
    line-height: 1.6;
}

/* INK SECTION */
.section-ink {
    background: var(--ink);
    padding: 5.5rem 0;
    position: relative;
}

.section-ink::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--burnt-orange);
}

.section-ink h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: bold;
    font-style: italic;
    color: var(--cream);
    line-height: 1.25;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.section-ink h3 {
    font-size: 1.2rem;
    font-weight: bold;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.section-ink p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: var(--ice-blue);
    line-height: 1.7;
    max-width: 660px;
    margin-bottom: 1.25rem;
}

.section-ink p:last-child { margin-bottom: 0; }

/* Logo strip section — compact padding */
.section-logos {
    background: var(--cream);
    padding: 3rem 0;
    border-bottom: 1px solid var(--rule);
}

/* Infographic section — ink but no excessive top padding */
.section-infographic {
    background: var(--ink);
    padding: 4.5rem 0 5rem;
    position: relative;
}

.section-infographic::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--burnt-orange);
}

.section-infographic h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: bold;
    font-style: italic;
    color: var(--cream);
    line-height: 1.25;
    max-width: 700px;
    margin-bottom: 1.25rem;
}

.section-infographic p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: var(--ice-blue);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 0;
    opacity: 0.85;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--ink);
    padding: 5.5rem 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--burnt-orange);
}

.cta-section h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: bold;
    font-style: italic;
    color: var(--cream);
    line-height: 1.25;
    max-width: 600px;
    margin-bottom: 1.25rem;
}

.cta-section p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: var(--ice-blue);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2rem;
}

/* ============================================================
   INLINE LINK
   ============================================================ */
.inline-link {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--burnt-orange);
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 117, 26, 0.35);
    margin-top: 1.25rem;
    transition: border-color 0.2s;
}

.inline-link:hover { border-color: var(--burnt-orange); }

.on-ink .inline-link {
    color: var(--soft-orange);
    border-bottom-color: rgba(244, 162, 97, 0.35);
}

.on-ink .inline-link:hover { border-color: var(--soft-orange); }

/* ============================================================
   ADA STEP CARDS — 3-column grid
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.step {
    background: var(--card-white);
    border-radius: 4px;
    padding: 2rem 2.25rem;
    border-top: 4px solid var(--burnt-orange);
}

.step-number {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--burnt-orange);
    margin-bottom: 0.4rem;
}

.step h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--ink);
    margin-bottom: 0.75rem;
    font-style: normal;
}

.step p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.7;
    max-width: none;
    margin-bottom: 0;
}

/* ============================================================
   TWO-COL VERTICAL CARDS
   ============================================================ */
.two-col-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.vertical-card {
    background: var(--card-white);
    border-radius: 4px;
    padding: 2.25rem;
    border-top: 4px solid var(--burnt-orange);
}

.vertical-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
    font-weight: bold;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.vertical-card p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: none;
}

/* ============================================================
   THREE-COL CASE STUDY CARDS
   ============================================================ */
.cs-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.cs-card {
    background: var(--card-white);
    border-radius: 4px;
    padding: 2rem;
    border-top: 4px solid var(--burnt-orange);
    display: flex;
    flex-direction: column;
}

.cs-card-logo {
    height: 32px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 1.25rem;
    filter: grayscale(100%);
    display: block;
}

.cs-card-logo-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    font-weight: bold;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 1.25rem;
    display: block;
}

.cs-card p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
    max-width: none;
}

/* ============================================================
   CLIENT LOGO STRIP
   ============================================================ */
.logo-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem 4rem;
    margin-top: 2.5rem;
}

.logo-strip img {
    max-height: 32px;
    width: auto;
    max-width: 130px;
    filter: grayscale(100%) opacity(40%);
    transition: filter 0.2s;
    display: block;
}

.logo-strip img:hover { filter: grayscale(100%) opacity(65%); }

.logo-text-item {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--navy);
    opacity: 0.4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: opacity 0.2s;
}

.logo-text-item:hover { opacity: 0.65; }

/* ============================================================
   TEAM PHOTO LAYOUT
   ============================================================ */
.team-photo-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2.5rem;
}

.team-photo-layout figure img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

.team-photo-caption {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.6rem;
}

.team-placeholder {
    width: 260px;
    aspect-ratio: 3/4;
    border: 2px dashed var(--rule);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    text-align: center;
    padding: 1rem;
    background: var(--card-white);
}

/* ============================================================
   CREDENTIAL GRID — 2×2
   ============================================================ */
.cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.cred-card {
    background: rgba(202, 220, 252, 0.05);
    border: 1px solid rgba(202, 220, 252, 0.12);
    border-radius: 4px;
    padding: 2rem;
}

.cred-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    font-weight: bold;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.cred-card p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--ice-blue);
    line-height: 1.65;
    opacity: 0.85;
    max-width: none;
    margin-bottom: 0;
}

.cred-card a { color: var(--soft-orange); text-decoration: none; }
.cred-card a:hover { text-decoration: underline; }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-style: italic;
    color: var(--cream);
    line-height: 1.45;
    max-width: 760px;
    border-left: 3px solid var(--burnt-orange);
    padding-left: 1.75rem;
    margin: 1.75rem 0 1.25rem;
}

.pull-quote-cream {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-style: italic;
    color: var(--ink);
    line-height: 1.45;
    max-width: 760px;
    border-left: 3px solid var(--burnt-orange);
    padding-left: 1.75rem;
    margin: 1.75rem 0 1.25rem;
}

.pull-attribution {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    color: var(--ice-blue);
    opacity: 0.7;
    padding-left: calc(1.75rem + 3px);
}

.pull-attribution-cream {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    color: var(--navy);
    opacity: 0.7;
    padding-left: calc(1.75rem + 3px);
}

/* ============================================================
   DIAGRAM — inline SVG
   ============================================================ */
.diagram-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 2rem;
}

.diagram-scroll svg {
    display: block;
    min-width: 680px;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ============================================================
   CARGOWISE CTA CARD
   ============================================================ */
.cta-card {
    background: rgba(202, 220, 252, 0.05);
    border: 1px solid rgba(232, 117, 26, 0.28);
    border-radius: 4px;
    padding: 2.5rem;
}

.cta-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 0.75rem;
    max-width: 580px;
}

.cta-card p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--ice-blue);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 1.5rem;
}

/* ============================================================
   STAT CALLOUTS — 2-col
   ============================================================ */
.stat-callouts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-item {
    border-left: 3px solid var(--burnt-orange);
    padding-left: 1.25rem;
}

.stat-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--soft-orange);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--cream);
}

/* ============================================================
   BADGE / PARTNER LOGOS
   ============================================================ */
.badge-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.badge-strip img {
    max-height: 56px;
    width: auto;
}

.badge-logo {
    max-height: 44px;
    width: auto;
    display: block;
    margin-top: 1.5rem;
}

/* ============================================================
   CASE STUDY PAGE TEMPLATE
   ============================================================ */
.cs-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.cs-meta { display: grid; gap: 0.25rem; }

.cs-meta dt {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--burnt-orange);
    margin-top: 1.1rem;
}

.cs-meta dt:first-child { margin-top: 0; }

.cs-meta dd {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.5;
}

.outcome-points {
    list-style: none;
    margin-top: 1.5rem;
}

.outcome-points li {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.65;
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--rule);
    max-width: 660px;
}

.outcome-points li:last-child { border-bottom: none; }

.outcome-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--burnt-orange);
}

.cs-hero-logo {
    display: block;
    height: 40px;
    width: auto;
    max-width: 180px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

/* ============================================================
   VIDEO PLACEHOLDER
   ============================================================ */
.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--ink);
    border: 2px dashed rgba(244, 241, 234, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.video-placeholder p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--ice-blue);
    opacity: 0.45;
    margin-bottom: 0;
    max-width: none;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-detail {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--ice-blue);
    line-height: 1.7;
    opacity: 0.85;
}

.contact-detail a {
    color: var(--soft-orange);
    text-decoration: none;
}

.contact-detail a:hover { text-decoration: underline; }

.contact-label {
    font-size: 0.68rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--soft-orange);
    margin-bottom: 0.3rem;
    display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(202, 220, 252, 0.08);
    padding: 3rem 0 2rem;
}

.footer-top {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
    border-bottom: 1px solid rgba(202, 220, 252, 0.06);
}

.footer-brand {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    color: rgba(202, 220, 252, 0.5);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.35rem;
}

.footer-tagline {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    color: var(--muted);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.75rem;
    justify-content: flex-end;
    align-items: center;
}

.footer-nav a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover { color: var(--ice-blue); }

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.5rem 2.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    color: var(--muted);
}

.footer-badge img {
    max-height: 36px;
    width: auto;
    opacity: 0.7;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.hero-anim {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

.hero-anim-d1 { animation-delay: 0.1s; }
.hero-anim-d2 { animation-delay: 0.2s; }
.hero-anim-d3 { animation-delay: 0.35s; }
.hero-anim-d4 { animation-delay: 0.5s; }
.hero-anim-d5 { animation-delay: 0.65s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .steps-grid { grid-template-columns: 1fr; }
    .two-col-cards { grid-template-columns: 1fr; }
    .cs-cards { grid-template-columns: 1fr 1fr; }
    .cred-grid { grid-template-columns: 1fr; }
    .cs-overview { grid-template-columns: 1fr; }
    .stat-callouts { grid-template-columns: 1fr; }
    .team-photo-layout { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-nav { justify-content: flex-start; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        background: var(--ink);
        padding: 1.5rem 2.5rem 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(202, 220, 252, 0.08);
    }
    .nav-links.open { display: flex; }
    .cs-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero-stamp { flex-direction: column; gap: 0.75rem; }
    .container { padding: 0 1.5rem; }
    .section-cream, .section-ink, .cta-section, .section-infographic { padding: 3.5rem 0; }
    .hero { padding: 7rem 0 4rem; }
    .badge-strip { gap: 1.5rem; }
    .logo-strip { gap: 2rem 2.5rem; }
}
