/* FSK Theme — main.css
 * Vanilla CSS. Mobile-first. Honors prefers-reduced-motion.
 * Sections:
 *   1. Tokens (colors, fonts, spacing)
 *   2. Reset + base
 *   3. Layout helpers
 *   4. Buttons
 *   5. Header + nav
 *   6. Hero
 *   7. Section atoms
 *   8. About + feature cards
 *   9. Case studies
 *  10. Client maps
 *  11. Pricing
 *  12. Why FSK
 *  13. Contact CTA + footer
 *  14. Mobile sticky bar
 *  15. Pages, archive, prose
 *  16. Reveals + motion
 *  17. Responsive breakpoints
 */

/* ---------- 1. Tokens */
:root {
    --fsk-blue:        #1a73e8;
    --fsk-blue-dk:     #155bbd;
    --fsk-green:       #34a853;
    --fsk-green-dk:    #1e8a3a;
    --fsk-wa:          #25d366;
    --fsk-wa-dk:       #1ea952;
    --fsk-yellow:      #fbbc05;
    --fsk-ink:         #202124;
    --fsk-ink-soft:    #3c4043;
    --fsk-muted:       #5f6368;
    --fsk-line:        #dadce0;
    --fsk-bg:          #f8f9fa;
    --fsk-card:        #ffffff;
    --fsk-shadow:      0 4px 16px rgba(60, 64, 67, 0.08);
    --fsk-shadow-lg:   0 16px 48px rgba(60, 64, 67, 0.16);
    --fsk-radius:      16px;
    --fsk-radius-sm:   10px;
    --fsk-radius-btn:  10px;
    --fsk-container:   1200px;
    --fsk-gap:         24px;
    --fsk-section-pad: clamp(56px, 8vw, 96px);
    --fsk-font-heading: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --fsk-font-body:    'Inter',   system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- 2. Reset + base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--fsk-bg);
    color: var(--fsk-ink);
    font-family: var(--fsk-font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fsk-blue); text-decoration: none; transition: color .15s ease; }
a:hover, a:focus-visible { color: var(--fsk-blue-dk); text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--fsk-font-heading); color: var(--fsk-ink); margin: 0 0 .5em; line-height: 1.2; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--fsk-blue); outline-offset: 3px; border-radius: 4px; }

.fsk-skip-link {
    position: absolute; top: -100px; left: 0;
    background: var(--fsk-ink); color: #fff; padding: 8px 16px; z-index: 999;
}
.fsk-skip-link:focus { top: 0; }

/* ---------- 3. Layout */
.fsk-container { width: 100%; max-width: var(--fsk-container); margin: 0 auto; padding: 0 20px; }
.fsk-section { padding: var(--fsk-section-pad) 0; }

.fsk-section__head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.fsk-section__eyebrow { color: var(--fsk-blue); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; margin: 0 0 8px; }
.fsk-section__title { font-size: clamp(28px, 4vw, 40px); }
.fsk-section__lede { color: var(--fsk-muted); font-size: 17px; max-width: 640px; margin: 12px auto 0; }

/* ---------- 4. Buttons */
.fsk-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--fsk-blue); color: #fff;
    font-family: var(--fsk-font-heading); font-weight: 600;
    padding: 14px 22px; border-radius: var(--fsk-radius-btn);
    text-decoration: none; border: 0; cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.25);
    font-size: 15px; line-height: 1;
}
.fsk-btn:hover, .fsk-btn:focus-visible {
    background: var(--fsk-blue-dk); color: #fff; text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.30);
}
.fsk-btn--wa   { background: var(--fsk-wa); box-shadow: 0 2px 8px rgba(37, 211, 102, 0.30); }
.fsk-btn--wa:hover, .fsk-btn--wa:focus-visible { background: var(--fsk-wa-dk); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35); }
.fsk-btn--call { background: var(--fsk-blue); }
.fsk-btn--sm   { padding: 10px 16px; font-size: 14px; }
.fsk-btn--lg   { padding: 18px 28px; font-size: 17px; }
.fsk-btn--block { width: 100%; }
.fsk-btn--ghost {
    background: transparent; color: var(--fsk-blue);
    box-shadow: inset 0 0 0 2px var(--fsk-blue);
}
.fsk-btn--ghost:hover, .fsk-btn--ghost:focus-visible {
    background: var(--fsk-blue); color: #fff;
}

/* ---------- 5. Header + nav */
.fsk-site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.fsk-site-header.is-scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.07); border-bottom-color: var(--fsk-line); }
.fsk-site-header__inner { display: flex; align-items: center; gap: 18px; padding: 14px 20px; }

.fsk-brand { display: inline-flex; align-items: baseline; gap: 8px; text-decoration: none; color: var(--fsk-ink); }
.fsk-brand:hover { text-decoration: none; }
.fsk-brand__mark {
    font-family: var(--fsk-font-heading); font-weight: 700; font-size: 22px; color: var(--fsk-blue);
    background: #e8f0fe; padding: 6px 10px; border-radius: 8px;
}
.fsk-brand__word { font-family: var(--fsk-font-heading); font-weight: 600; color: var(--fsk-ink); font-size: 16px; letter-spacing: -.01em; }

.fsk-menu-toggle {
    margin-left: auto; background: transparent; border: 0; cursor: pointer;
    width: 44px; height: 44px; display: none; align-items: center; justify-content: center;
    border-radius: 8px;
}
.fsk-menu-toggle:hover { background: var(--fsk-bg); }
.fsk-menu-toggle__bar { display: block; width: 22px; height: 2px; background: var(--fsk-ink); margin: 3px 0; transition: transform .2s, opacity .2s; }
.fsk-menu-open .fsk-menu-toggle__bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.fsk-menu-open .fsk-menu-toggle__bar:nth-child(2) { opacity: 0; }
.fsk-menu-open .fsk-menu-toggle__bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.fsk-primary-nav { margin-left: auto; }
.fsk-menu { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; align-items: center; }
.fsk-menu a {
    display: block; padding: 10px 14px; color: var(--fsk-ink); font-weight: 500;
    border-radius: 8px; text-decoration: none;
}
.fsk-menu a:hover, .fsk-menu .current-menu-item > a { background: var(--fsk-bg); color: var(--fsk-blue); text-decoration: none; }
.fsk-site-header__cta { margin-left: 12px; }

/* ---------- 6. Hero */
.fsk-hero {
    position: relative; overflow: hidden;
    min-height: 85vh;
    color: #fff;
    background: linear-gradient(135deg, #0b1f3a 0%, #102a4c 35%, #0a2356 70%, #0b1f3a 100%);
    display: flex; align-items: center;
    isolation: isolate;
}
.fsk-hero__video, .fsk-hero__canvas {
    position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
    pointer-events: none;
}
.fsk-hero__video { object-fit: cover; }
.fsk-hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse at top right, rgba(26,115,232,0.25), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(52,168,83,0.18), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.35) 100%);
}
.fsk-hero__inner { position: relative; z-index: 2; padding: 96px 20px 80px; text-align: center; }

.fsk-hero__eyebrow {
    color: rgba(255,255,255,0.85);
    font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: 13px;
}
.fsk-hero__title {
    color: #fff;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.05;
    margin: 18px auto 14px;
    max-width: 14ch;
    letter-spacing: -.02em;
}
.fsk-hero__title-accent {
    background: linear-gradient(135deg, #66a3ff, #34a853);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.fsk-hero__rotator-line {
    font-size: clamp(18px, 2.5vw, 22px); color: rgba(255,255,255,0.92);
    margin: 0 auto 12px; font-weight: 500;
}
.fsk-hero__rotator { display: inline-block; min-width: 220px; height: 1.2em; vertical-align: middle; position: relative; }
.fsk-hero__rotator-item {
    position: absolute; left: 0; right: 0; opacity: 0; transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
    color: var(--fsk-yellow); font-weight: 700;
}
.fsk-hero__rotator-item.is-active { opacity: 1; transform: translateY(0); }
.fsk-hero__sub {
    max-width: 720px; margin: 4px auto 28px; color: rgba(255,255,255,0.82);
    font-size: 17px; line-height: 1.6;
}
.fsk-hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.fsk-hero__stats {
    list-style: none; padding: 0; margin: 44px auto 0; max-width: 920px;
    display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr);
}
.fsk-hero__stats li {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border-radius: var(--fsk-radius-sm); padding: 14px 12px;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.fsk-hero__stats strong { font-family: var(--fsk-font-heading); font-size: 18px; color: #fff; }
.fsk-hero__stats span   { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- 8. About */
.fsk-about__grid {
    display: grid; gap: var(--fsk-gap); grid-template-columns: repeat(3, 1fr);
    margin-bottom: 56px;
}
.fsk-feature-card {
    background: var(--fsk-card); border-radius: var(--fsk-radius);
    box-shadow: var(--fsk-shadow); padding: 28px;
    transition: transform .2s ease, box-shadow .2s ease;
    border: 1px solid transparent;
}
.fsk-feature-card:hover { transform: translateY(-4px); box-shadow: var(--fsk-shadow-lg); border-color: rgba(26,115,232,0.08); }
.fsk-feature-card__icon {
    width: 56px; height: 56px; border-radius: 14px; background: #e8f0fe; color: var(--fsk-blue);
    display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.fsk-feature-card h3 { font-size: 20px; margin-bottom: 8px; }
.fsk-feature-card p { color: var(--fsk-ink-soft); margin: 0; }

.fsk-about__founder {
    display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: center;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0fbf4 100%);
    border-radius: var(--fsk-radius); padding: 32px;
}
.fsk-about__founder-photo img { border-radius: 50%; width: 200px; height: 200px; object-fit: cover; box-shadow: var(--fsk-shadow); }
.fsk-about__founder-quote { font-size: 20px; color: var(--fsk-ink); line-height: 1.45; font-weight: 500; }
.fsk-about__founder-name  { color: var(--fsk-muted); margin: 0 0 10px; }
.fsk-about__founder-socials { list-style: none; padding: 0; margin: 0; display: flex; gap: 14px; flex-wrap: wrap; }
.fsk-about__founder-socials a { font-weight: 600; }

/* ---------- 9. Case studies */
.fsk-cases__grid {
    display: grid; gap: var(--fsk-gap); grid-template-columns: repeat(3, 1fr);
}
.fsk-case-tile {
    background: var(--fsk-card); border-radius: var(--fsk-radius);
    overflow: hidden; box-shadow: var(--fsk-shadow);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex; flex-direction: column;
}
.fsk-case-tile:hover { transform: translateY(-4px); box-shadow: var(--fsk-shadow-lg); }
.fsk-case-tile__media { position: relative; display: block; overflow: hidden; aspect-ratio: 16/10; background: #f1f3f4; }
.fsk-case-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.fsk-case-tile:hover .fsk-case-tile__media img { transform: scale(1.04); }
.fsk-case-tile__badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(26,115,232,0.95); color: #fff; padding: 4px 10px;
    border-radius: 6px; font-size: 12px; font-weight: 600;
}
.fsk-case-tile__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.fsk-case-tile__title  { font-size: 18px; margin: 0; }
.fsk-case-tile__result { color: var(--fsk-muted); margin: 0 0 4px; font-size: 14px; }
.fsk-case-tile__body .fsk-btn { align-self: flex-start; margin-top: auto; }

/* ---------- 10. Client maps */
.fsk-maps__grid {
    display: grid; gap: var(--fsk-gap); grid-template-columns: repeat(2, 1fr);
}
.fsk-map-card { background: var(--fsk-card); border-radius: var(--fsk-radius); overflow: hidden; box-shadow: var(--fsk-shadow); }
.fsk-map-card__embed { aspect-ratio: 16/9; position: relative; background: #f1f3f4; }
.fsk-map-card__embed iframe { width: 100%; height: 100%; }
.fsk-map-card__caption { padding: 14px 18px; color: var(--fsk-ink-soft); font-size: 14px; margin: 0; }

/* ---------- 11. Pricing */
.fsk-pricing__grid {
    display: grid; gap: var(--fsk-gap); grid-template-columns: repeat(3, 1fr);
    margin-bottom: 24px;
}
.fsk-plan {
    position: relative; background: var(--fsk-card); border-radius: var(--fsk-radius);
    box-shadow: var(--fsk-shadow); padding: 32px 28px;
    display: flex; flex-direction: column; gap: 16px;
    border: 2px solid transparent;
}
.fsk-plan.is-featured {
    border-color: var(--fsk-blue);
    transform: translateY(-8px);
    box-shadow: var(--fsk-shadow-lg);
}
.fsk-plan__badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--fsk-blue); color: #fff; padding: 6px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.fsk-plan__name  { font-size: 18px; color: var(--fsk-blue); text-transform: uppercase; letter-spacing: .08em; margin: 0; }
.fsk-plan__price { margin: 0; }
.fsk-plan__price-value  { font-family: var(--fsk-font-heading); font-size: 44px; font-weight: 700; color: var(--fsk-ink); }
.fsk-plan__price-period { color: var(--fsk-muted); font-size: 16px; margin-left: 4px; }
.fsk-plan__tag { color: var(--fsk-muted); margin: 0; }
.fsk-plan__features { list-style: none; padding: 0; margin: 8px 0 16px; display: flex; flex-direction: column; gap: 10px; }
.fsk-plan__features li { display: flex; gap: 10px; align-items: flex-start; color: var(--fsk-ink-soft); }
.fsk-plan__features svg { color: var(--fsk-green); flex-shrink: 0; margin-top: 2px; }
.fsk-pricing__note { text-align: center; color: var(--fsk-muted); font-size: 14px; }

/* ---------- 12. Why FSK */
.fsk-why__grid {
    list-style: none; padding: 0; margin: 0 0 40px;
    display: grid; gap: var(--fsk-gap); grid-template-columns: repeat(2, 1fr);
}
.fsk-why__card { background: var(--fsk-card); border-radius: var(--fsk-radius); padding: 28px; box-shadow: var(--fsk-shadow); }
.fsk-why__icon { width: 48px; height: 48px; border-radius: 12px; background: #e8f0fe; color: var(--fsk-blue); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.fsk-why__card h3 { font-size: 19px; margin-bottom: 6px; }
.fsk-why__card p  { color: var(--fsk-ink-soft); margin: 0; }
.fsk-why__stats {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: var(--fsk-gap); grid-template-columns: repeat(4, 1fr);
}
.fsk-why__stats li {
    background: linear-gradient(135deg, #e8f0fe 0%, #f0fbf4 100%);
    border-radius: var(--fsk-radius-sm); padding: 18px;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    text-align: center;
}
.fsk-why__stats strong { font-family: var(--fsk-font-heading); font-size: 18px; color: var(--fsk-ink); }
.fsk-why__stats span   { font-size: 12px; color: var(--fsk-muted); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- 13. Contact CTA + footer */
.fsk-contact-cta {
    background: linear-gradient(135deg, var(--fsk-blue) 0%, #2b8aff 100%);
    color: #fff;
}
.fsk-contact-cta__inner {
    display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.fsk-contact-cta h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-bottom: 6px; }
.fsk-contact-cta .fsk-section__eyebrow { color: rgba(255,255,255,0.85); }
.fsk-contact-cta p  { color: rgba(255,255,255,0.92); margin: 0; }
.fsk-contact-cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.fsk-contact-cta .fsk-btn--call { background: #fff; color: var(--fsk-blue); box-shadow: 0 2px 8px rgba(0,0,0,0.10); }
.fsk-contact-cta .fsk-btn--call:hover { background: #f1f3f4; }

.fsk-cta-band {
    background: linear-gradient(135deg, var(--fsk-ink) 0%, #303034 100%);
    color: #fff; padding: 48px 0;
}
.fsk-cta-band__inner { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.fsk-cta-band h2 { color: #fff; margin: 0 0 6px; font-size: clamp(22px, 2.5vw, 28px); }
.fsk-cta-band p  { color: rgba(255,255,255,0.78); margin: 0; }
.fsk-cta-band__btns { display: flex; gap: 12px; flex-wrap: wrap; }

.fsk-site-footer {
    background: #1a1d22; color: rgba(255,255,255,0.78); padding: 64px 0 24px;
}
.fsk-site-footer__grid {
    display: grid; gap: 36px; grid-template-columns: 1.2fr 1fr 1.2fr 1.4fr;
}
.fsk-footer-col h3 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.fsk-footer-col p, .fsk-footer-col a { color: rgba(255,255,255,0.78); }
.fsk-footer-col a:hover { color: #fff; text-decoration: none; }
.fsk-footer-brand { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.fsk-footer-brand .fsk-brand__word { color: #fff; }
.fsk-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.fsk-socials { list-style: none; padding: 0; margin: 14px 0 0; display: flex; gap: 10px; }
.fsk-socials a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: #fff; transition: background .2s, transform .2s;
}
.fsk-socials a:hover { background: var(--fsk-blue); transform: translateY(-2px); }
.fsk-site-footer__bottom { text-align: center; padding-top: 28px; margin-top: 36px; border-top: 1px solid rgba(255,255,255,0.08); }
.fsk-site-footer__bottom p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.55); }

/* ---------- 14. Mobile sticky bar */
.fsk-mobile-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 60;
    padding: 10px;
    gap: 10px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
}

/* ---------- 15. Pages, archive, prose */
.fsk-page__wrap, .fsk-single__wrap { max-width: 820px; margin: 0 auto; }
.fsk-page__head, .fsk-single__head { text-align: center; margin-bottom: 32px; }
.fsk-page__title, .fsk-single__title { font-size: clamp(28px, 4vw, 40px); }
.fsk-page__lede { color: var(--fsk-muted); font-size: 18px; }
.fsk-page__hero-img, .fsk-single__hero { margin-bottom: 32px; border-radius: var(--fsk-radius); overflow: hidden; box-shadow: var(--fsk-shadow); }
.fsk-page__hero-img img, .fsk-single__hero img { width: 100%; }
.fsk-single__cat { color: var(--fsk-blue); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; }
.fsk-single__meta { color: var(--fsk-muted); }
.fsk-prose { font-size: 17px; color: var(--fsk-ink-soft); }
.fsk-prose h2 { font-size: 26px; margin: 1.8em 0 .5em; color: var(--fsk-ink); }
.fsk-prose h3 { font-size: 21px; margin: 1.4em 0 .4em; }
.fsk-prose ul, .fsk-prose ol { padding-left: 1.4em; margin: 1em 0; }
.fsk-prose li { margin: 0.4em 0; }
.fsk-prose blockquote {
    border-left: 4px solid var(--fsk-blue); margin: 1.4em 0; padding: 8px 0 8px 20px;
    color: var(--fsk-ink); font-style: italic;
}
.fsk-prose img { border-radius: var(--fsk-radius-sm); }
.fsk-prose a { text-decoration: underline; }

.fsk-single__cta {
    margin-top: 40px; padding: 24px;
    background: linear-gradient(135deg, #e8f0fe, #f0fbf4); border-radius: var(--fsk-radius);
}
.fsk-single__cta h3 { margin: 0 0 14px; }
.fsk-single__cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.fsk-archive__grid {
    display: grid; gap: var(--fsk-gap); grid-template-columns: repeat(3, 1fr);
}
.fsk-archive__card { background: var(--fsk-card); border-radius: var(--fsk-radius); overflow: hidden; box-shadow: var(--fsk-shadow); transition: transform .2s, box-shadow .2s; }
.fsk-archive__card:hover { transform: translateY(-3px); box-shadow: var(--fsk-shadow-lg); }
.fsk-archive__media { aspect-ratio: 16/10; overflow: hidden; display: block; }
.fsk-archive__media img { width: 100%; height: 100%; object-fit: cover; }
.fsk-archive__body { padding: 20px; }
.fsk-archive__title { font-size: 19px; margin: 0 0 8px; }
.fsk-archive__title a { color: var(--fsk-ink); text-decoration: none; }
.fsk-archive__title a:hover { color: var(--fsk-blue); }
.fsk-archive__meta { color: var(--fsk-muted); font-size: 13px; margin-bottom: 8px; }
.fsk-archive__excerpt { color: var(--fsk-ink-soft); margin-bottom: 12px; }
.fsk-archive__pagination { text-align: center; margin-top: 32px; }
.fsk-archive__pagination .page-numbers { display: inline-block; padding: 6px 12px; margin: 0 4px; border-radius: 8px; color: var(--fsk-ink); text-decoration: none; }
.fsk-archive__pagination .page-numbers.current { background: var(--fsk-blue); color: #fff; }
.fsk-archive__empty { text-align: center; color: var(--fsk-muted); padding: 40px 0; }

/* ---------- 16. Reveals + motion */
.fsk-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.fsk-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .fsk-reveal { opacity: 1; transform: none; transition: none; }
    .fsk-case-tile:hover .fsk-case-tile__media img { transform: none; }
    .fsk-hero__rotator-item { opacity: 1; position: static; display: block; }
    html { scroll-behavior: auto; }
}

/* ---------- 17. Responsive */
@media (max-width: 1024px) {
    .fsk-about__grid, .fsk-cases__grid, .fsk-pricing__grid, .fsk-archive__grid { grid-template-columns: repeat(2, 1fr); }
    .fsk-hero__stats, .fsk-why__stats { grid-template-columns: repeat(2, 1fr); }
    .fsk-site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
    .fsk-menu-toggle { display: inline-flex; }
    .fsk-primary-nav {
        position: absolute; left: 0; right: 0; top: 100%;
        background: #fff; border-bottom: 1px solid var(--fsk-line); box-shadow: var(--fsk-shadow);
        max-height: 0; overflow: hidden; transition: max-height .3s ease;
    }
    .fsk-primary-nav.is-open { max-height: 70vh; }
    .fsk-menu { flex-direction: column; gap: 0; padding: 8px 0; align-items: stretch; }
    .fsk-menu a { padding: 14px 20px; border-radius: 0; }
    .fsk-site-header__cta { margin-left: 0; }
    .fsk-site-header__inner { flex-wrap: nowrap; }

    .fsk-about__founder { grid-template-columns: 1fr; text-align: center; padding: 24px; }
    .fsk-about__founder-photo img { width: 140px; height: 140px; margin: 0 auto; }
    .fsk-about__founder-socials { justify-content: center; }
    .fsk-about__grid, .fsk-cases__grid, .fsk-pricing__grid, .fsk-maps__grid, .fsk-archive__grid,
    .fsk-why__grid { grid-template-columns: 1fr; }
    .fsk-plan.is-featured { transform: none; }
    .fsk-hero__inner { padding: 80px 20px 60px; }
    .fsk-hero__stats, .fsk-why__stats { grid-template-columns: repeat(2, 1fr); }
    .fsk-cta-band__inner, .fsk-contact-cta__inner { grid-template-columns: 1fr; text-align: center; }
    .fsk-cta-band__btns, .fsk-contact-cta__btns, .fsk-hero__cta { justify-content: center; }
    .fsk-site-footer__grid { grid-template-columns: 1fr; gap: 28px; }

    .fsk-mobile-bar { display: flex; }
    body { padding-bottom: 84px; }
}
