:root {
    --zfp-blue: #111dbd;
    --zfp-blue-deep: #0a126f;
    --zfp-blue-soft: #dfe7f4;
    --zfp-magenta: #c50072;
    --zfp-ink: #17203b;
    --zfp-muted: #596279;
    --zfp-paper: #f7f9fc;
    --zfp-white: #ffffff;
    --zfp-line: rgba(17, 29, 189, .13);
    --zfp-shadow: 0 30px 80px rgba(10, 18, 111, .13);
    --zfp-radius: 28px;
    --zfp-shell: 1200px;
}

html { scroll-behavior: smooth; }
body.zfp-premium-site {
    background: var(--zfp-paper);
    color: var(--zfp-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}
body.zfp-premium-site #masthead,
body.zfp-premium-site #colophon,
body.zfp-premium-site .entry-header,
body.zfp-premium-site .entry-hero { display: none !important; }
body.zfp-premium-site #inner-wrap,
body.zfp-premium-site #primary,
body.zfp-premium-site .content-area,
body.zfp-premium-site .content-container,
body.zfp-premium-site .site-container,
body.zfp-premium-site .site-main,
body.zfp-premium-site .entry-content-wrap,
body.zfp-premium-site .entry-content { width: 100%; max-width: none; margin: 0; padding: 0; }
body.zfp-premium-site .content-area { margin: 0 !important; }
body.zfp-premium-site .content-bg { background: transparent; }
body.zfp-premium-site p:last-child { margin-bottom: 0; }
.zfp-shell { width: min(calc(100% - 48px), var(--zfp-shell)); margin-inline: auto; }
.zfp-main { overflow: clip; }
.zfp-section { padding: 110px 0; }
.zfp-main h1,
.zfp-main h2,
.zfp-main h3 { margin: 0; color: var(--zfp-ink); font-weight: 750; letter-spacing: -.04em; line-height: 1.08; }
.zfp-main h1 { font-size: clamp(3.25rem, 6vw, 6rem); }
.zfp-main h2 { font-size: clamp(2.5rem, 4.2vw, 4.5rem); }
.zfp-main h3 { font-size: 1.32rem; letter-spacing: -.025em; }
.zfp-main p { color: var(--zfp-muted); font-size: 1.05rem; line-height: 1.75; }
.zfp-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; color: var(--zfp-blue); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.zfp-kicker span { width: 46px; height: 8px; background: var(--zfp-magenta); border-radius: 999px; box-shadow: 0 7px 20px rgba(197, 0, 114, .24); }
.zfp-main .zfp-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.zfp-button { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 56px; padding: 0 22px; border: 1px solid transparent; border-radius: 10px; background: var(--zfp-blue); color: #fff !important; font-size: .92rem; font-weight: 750; text-decoration: none !important; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.zfp-button:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(17, 29, 189, .22); background: var(--zfp-magenta); }
.zfp-button--ghost { border-color: rgba(17, 29, 189, .28); background: rgba(255, 255, 255, .48); color: var(--zfp-blue) !important; }
.zfp-button--ghost:hover { background: var(--zfp-blue); color: #fff !important; }
.zfp-button--dark { background: var(--zfp-ink); }
.zfp-button--light { background: #fff; color: var(--zfp-blue) !important; }
.zfp-text-link { display: inline-flex; gap: 16px; align-items: center; color: var(--zfp-blue); font-size: .88rem; font-weight: 800; }
.zfp-reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s cubic-bezier(.22, 1, .36, 1); }
.zfp-reveal.is-visible { opacity: 1; transform: none; }

/* Header */
.zfp-header { position: sticky; top: 0; z-index: 9999; height: 92px; border-bottom: 1px solid transparent; background: rgba(255, 255, 255, .88); backdrop-filter: blur(18px); transition: height .25s ease, box-shadow .25s ease, border-color .25s ease; }
.zfp-header.is-scrolled { height: 78px; border-color: var(--zfp-line); box-shadow: 0 15px 45px rgba(10, 18, 111, .08); }
.zfp-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.zfp-brand { display: flex; align-items: center; flex: 0 0 auto; }
.zfp-brand img { display: block; width: 220px; height: auto; }
.zfp-nav { display: flex; align-items: center; gap: 26px; }
.zfp-nav > a { position: relative; display: inline-flex; align-items: center; min-height: 44px; color: var(--zfp-ink); font-size: .87rem; font-weight: 700; text-decoration: none !important; }
.zfp-nav > a:not(.zfp-nav__cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 2px; background: var(--zfp-magenta); transition: right .25s ease; }
.zfp-nav > a:hover::after,
.zfp-nav > a.is-active::after { right: 0; }
.zfp-nav__cta { min-height: 46px !important; padding: 0 19px; border-radius: 9px; background: var(--zfp-blue); color: #fff !important; }
.zfp-nav__cta:hover { background: var(--zfp-magenta); }
.zfp-menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 0; border-radius: 9px; background: var(--zfp-blue); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.zfp-menu-toggle > span:not(.screen-reader-text) { width: 20px; height: 2px; border-radius: 3px; background: #fff; }

/* Home hero */
.zfp-home-hero { position: relative; min-height: 720px; display: flex; align-items: stretch; background: linear-gradient(115deg, #eef3fa 0%, #e1e9f5 58%, #f6f8fc 100%); }
.zfp-home-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(17, 29, 189, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 29, 189, .04) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(90deg, #000, transparent 70%); }
.zfp-home-hero__mesh { position: absolute; top: 0; right: -5%; width: 55%; height: 100%; background-repeat: no-repeat; background-size: cover; background-position: center; opacity: .86; mask-image: linear-gradient(90deg, transparent 0%, #000 28%); }
.zfp-home-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.52fr) minmax(270px, .48fr); align-items: center; gap: 68px; padding: 76px 0; }
.zfp-home-hero__copy { max-width: 820px; }
.zfp-home-hero h1 { max-width: 900px; color: var(--zfp-blue); font-size: clamp(3rem, 4.35vw, 4rem); line-height: 1.055; text-wrap: balance; }
.zfp-home-hero__facts { align-self: end; margin-bottom: 10px; padding: 18px; border: 1px solid rgba(255,255,255,.8); border-radius: 22px; background: rgba(255,255,255,.72); backdrop-filter: blur(15px); box-shadow: var(--zfp-shadow); }
.zfp-home-hero__facts div { display: grid; grid-template-columns: 76px 1fr; align-items: center; gap: 12px; padding: 17px 10px; border-bottom: 1px solid var(--zfp-line); }
.zfp-home-hero__facts div:last-child { border-bottom: 0; }
.zfp-home-hero__facts strong { color: var(--zfp-blue); font-size: 1.85rem; letter-spacing: -.04em; }
.zfp-home-hero__facts span { color: var(--zfp-muted); font-size: .76rem; font-weight: 700; line-height: 1.35; text-transform: uppercase; letter-spacing: .04em; overflow-wrap: normal; word-break: normal; hyphens: none; }

/* Quote */
.zfp-quote { position: relative; background: #fff; }
.zfp-quote__inner { display: grid; grid-template-columns: 120px minmax(0, 760px); justify-content: center; gap: 38px; padding: 82px 0; }
.zfp-quote img { width: 112px; height: 112px; object-fit: cover; clip-path: circle(41% at 50% 50%); transform: scale(1.12); }
.zfp-quote blockquote { margin: 0 0 5px; color: var(--zfp-blue); font-size: clamp(1.65rem, 2.4vw, 2.35rem); font-weight: 750; font-style: italic; letter-spacing: -.025em; }
.zfp-quote strong { color: var(--zfp-magenta); font-size: .9rem; }
.zfp-quote p { margin-top: 22px; max-width: 720px; }

/* Service preview */
.zfp-services-preview { background: var(--zfp-paper); }
.zfp-section-head { display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 60px; margin-bottom: 58px; }
.zfp-section-head p { margin: 0 0 4px; max-width: 480px; }
.zfp-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.zfp-service-tile { position: relative; min-height: 340px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 34px; border: 1px solid var(--zfp-line); border-radius: var(--zfp-radius); background: #fff; color: var(--zfp-ink); text-decoration: none !important; overflow: hidden; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease; }
.zfp-service-tile::before { content: ""; position: absolute; width: 230px; height: 230px; top: -120px; right: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(197,0,114,.15), transparent 68%); transition: transform .4s ease; }
.zfp-service-tile:hover { transform: translateY(-8px); border-color: rgba(17,29,189,.3); box-shadow: var(--zfp-shadow); }
.zfp-service-tile:hover::before { transform: scale(1.25); }
.zfp-service-tile__no { position: absolute; top: 25px; left: 28px; color: rgba(17, 29, 189, .34); font-size: .75rem; font-weight: 800; letter-spacing: .14em; }
.zfp-service-tile img { position: absolute; width: 136px; height: 136px; object-fit: cover; top: 24px; right: 18px; clip-path: circle(42% at 58% 50%); transition: transform .35s ease; }
.zfp-service-tile:hover img { transform: rotate(-3deg) scale(1.04); }
.zfp-service-tile h3 { max-width: 255px; margin-bottom: 25px; color: var(--zfp-blue); }

/* About preview */
.zfp-about-preview { padding: 0 0 110px; background: var(--zfp-paper); }
.zfp-about-preview__grid { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 560px; border-radius: 34px; background: var(--zfp-blue-soft); overflow: hidden; box-shadow: var(--zfp-shadow); }
.zfp-about-preview__photo { position: relative; min-height: 560px; }
.zfp-about-preview__photo > img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.zfp-about-preview__photo > div { position: absolute; right: -34px; bottom: 36px; display: flex; align-items: center; gap: 14px; padding: 18px 24px; border-radius: 16px; background: var(--zfp-magenta); color: #fff; box-shadow: 0 22px 45px rgba(197,0,114,.28); }
.zfp-about-preview__photo strong { font-size: 2rem; line-height: 1; }
.zfp-about-preview__photo span { font-size: .75rem; line-height: 1.4; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.zfp-about-preview__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 75px 78px; }
.zfp-about-preview__copy h2 { margin-bottom: 28px; color: var(--zfp-blue); }
.zfp-about-preview__copy p { margin-bottom: 34px; max-width: 590px; }

/* CTA */
.zfp-cta { padding-bottom: 0; background: var(--zfp-paper); }
.zfp-cta__grid { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 460px; width: 100%; max-width: none; }
.zfp-cta__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 70px 54px 70px max(24px, calc((100vw - var(--zfp-shell)) / 2)); background: var(--zfp-blue); }
.zfp-cta__copy .zfp-kicker { color: #fff; }
.zfp-cta h2 { max-width: 700px; color: #fff; font-size: clamp(2.35rem, 3.45vw, 3.55rem); line-height: 1.08; overflow-wrap: normal; word-break: normal; hyphens: none; text-wrap: balance; }
.zfp-cta p { max-width: 560px; margin: 28px 0 32px; color: rgba(255,255,255,.8); }
.zfp-cta__photo { min-height: 460px; background-repeat: no-repeat; background-position: center top; background-size: cover; }

/* Page hero */
.zfp-page-hero { position: relative; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; background: var(--zfp-blue-deep); }
.zfp-page-hero--image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,18,111,.96) 0%, rgba(10,18,111,.74) 50%, rgba(10,18,111,.22) 100%), var(--zfp-hero-image) center 38% / cover no-repeat; }
.zfp-page-hero__inner { position: relative; z-index: 1; padding: 105px 0 78px; }
.zfp-page-hero .zfp-kicker { color: #fff; }
.zfp-page-hero h1 { color: #fff; }
.zfp-page-hero p { max-width: 780px; margin: 25px 0 0; color: rgba(255,255,255,.82); font-size: 1.18rem; }

/* Services list */
.zfp-services-list { background: #fff; }
.zfp-service-row { display: grid; grid-template-columns: 240px 1fr; gap: 70px; align-items: center; padding: 68px 0; border-bottom: 1px solid var(--zfp-line); scroll-margin-top: 110px; }
.zfp-service-row:first-child { padding-top: 0; }
.zfp-service-row:last-child { border-bottom: 0; padding-bottom: 0; }
.zfp-service-row__icon { position: relative; height: 210px; display: grid; place-items: center; border: 1px solid var(--zfp-line); border-radius: 26px; background: linear-gradient(145deg, #fbfcfe, #edf2f9); overflow: hidden; }
.zfp-service-row__icon span { position: absolute; left: 19px; top: 14px; color: rgba(17,29,189,.35); font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.zfp-service-row__icon img { width: 150px; height: 150px; object-fit: cover; clip-path: circle(42% at 58% 50%); }
.zfp-service-row h2 { margin-bottom: 22px; color: var(--zfp-blue); font-size: clamp(2rem, 3vw, 3.2rem); }
.zfp-service-row p { max-width: 820px; margin: 0; }

/* About */
.zfp-about-hero { padding: 80px 0 105px; background: linear-gradient(135deg, #f7f9fc, #dfe7f4); }
.zfp-about-hero__grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 85px; }
.zfp-about-hero__photo { position: relative; height: 590px; min-height: 0; border-radius: 34px; overflow: hidden; box-shadow: var(--zfp-shadow); }
.zfp-about-hero__photo::after { content: ""; position: absolute; inset: auto 0 0; height: 6px; background: linear-gradient(90deg, var(--zfp-magenta), var(--zfp-blue)); }
.zfp-about-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.zfp-about-hero__copy h1 { color: var(--zfp-blue); }
.zfp-about-hero__copy p { margin: 32px 0 0; font-size: 1.1rem; }
.zfp-story { background: #fff; }
.zfp-story__grid { display: grid; grid-template-columns: 250px 1fr; gap: 90px; }
.zfp-story__aside { position: sticky; top: 120px; align-self: start; display: flex; flex-direction: column; padding: 32px; border-radius: 24px; background: var(--zfp-blue); color: #fff; }
.zfp-story__aside strong { font-size: 4rem; line-height: 1; letter-spacing: -.05em; }
.zfp-story__aside span { margin: 6px 0 40px; color: rgba(255,255,255,.72); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.zfp-story__aside a { color: #fff; font-size: .83rem; font-weight: 700; }
.zfp-story__content { max-width: 820px; }
.zfp-story__content > p { margin: 0 0 44px; font-size: 1.12rem; }
.zfp-story blockquote { margin: 12px 0 50px; padding: 36px 40px; border-left: 8px solid var(--zfp-magenta); border-radius: 0 22px 22px 0; background: var(--zfp-paper); color: var(--zfp-blue); font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 750; line-height: 1.25; letter-spacing: -.03em; }

/* Certificates */
.zfp-certs-hero { position: relative; min-height: 600px; display: flex; align-items: center; background: linear-gradient(110deg, #e3ebf6 0%, #f7f9fc 75%); overflow: hidden; }
.zfp-certs-hero__mesh { position: absolute; inset: 0 0 0 38%; background-repeat: no-repeat; background-size: cover; background-position: center; opacity: .72; mask-image: linear-gradient(90deg, transparent, #000 32%); }
.zfp-certs-hero__inner { position: relative; z-index: 1; padding: 90px 0; }
.zfp-certs-hero h1 { max-width: 780px; color: var(--zfp-blue); }
.zfp-certs-hero p { max-width: 720px; margin: 30px 0 0; }
.zfp-credentials { background: #fff; }
.zfp-credentials__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.zfp-credential-card { position: relative; padding: 55px; border: 1px solid var(--zfp-line); border-radius: var(--zfp-radius); background: var(--zfp-paper); }
.zfp-credential-card > span { display: block; margin-bottom: 48px; color: var(--zfp-magenta); font-weight: 800; letter-spacing: .1em; }
.zfp-credential-card h2 { margin-bottom: 36px; color: var(--zfp-blue); font-size: clamp(2rem, 3vw, 3rem); }
.zfp-credential-card ul { list-style: none; margin: 0; padding: 0; }
.zfp-credential-card li { position: relative; padding: 21px 0 21px 30px; border-bottom: 1px solid var(--zfp-line); color: var(--zfp-muted); }
.zfp-credential-card li:last-child { border-bottom: 0; }
.zfp-credential-card li::before { content: ""; position: absolute; left: 0; top: 29px; width: 10px; height: 10px; border-radius: 50%; background: var(--zfp-magenta); }
.zfp-credential-card--dark { border-color: transparent; background: var(--zfp-blue); }
.zfp-credential-card--dark h2,
.zfp-credential-card--dark li { color: #fff; }
.zfp-credential-card--dark li { border-color: rgba(255,255,255,.15); }

/* Articles empty */
.zfp-empty { position: relative; min-height: 720px; display: flex; align-items: center; background: linear-gradient(135deg, #edf2f9, #fff); overflow: hidden; }
.zfp-empty__mesh { position: absolute; inset: 0 0 0 45%; background-repeat: no-repeat; background-position: center; background-size: cover; opacity: .7; mask-image: linear-gradient(90deg, transparent, #000 30%); }
.zfp-empty__inner { position: relative; z-index: 1; padding: 100px 0; }
.zfp-empty__inner > img { width: 110px; margin-bottom: 32px; }
.zfp-empty h1 { color: var(--zfp-blue); }
.zfp-empty p { margin: 25px 0 34px; font-size: 1.16rem; }

/* Contact */
.zfp-contact { position: relative; min-height: 720px; display: flex; align-items: center; background: linear-gradient(115deg, #e1e9f5 0%, #f8fafd 74%); overflow: hidden; }
.zfp-contact__mesh { position: absolute; inset: 0 0 0 52%; background-repeat: no-repeat; background-position: center; background-size: cover; opacity: .68; mask-image: linear-gradient(90deg, transparent, #000 28%); }
.zfp-contact__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; padding: 90px 0; }
.zfp-contact__intro h1 { color: var(--zfp-blue); }
.zfp-contact__intro p { margin: 27px 0 0; font-size: 1.25rem; color: var(--zfp-ink); }
.zfp-contact-card { padding: 20px 52px; border: 1px solid rgba(255,255,255,.85); border-radius: 30px; background: rgba(255,255,255,.82); backdrop-filter: blur(18px); box-shadow: var(--zfp-shadow); }
.zfp-contact-card > div { position: relative; display: grid; grid-template-columns: 48px 120px 1fr; align-items: center; gap: 16px; min-height: 116px; border-bottom: 1px solid var(--zfp-line); }
.zfp-contact-card > div:last-child { border-bottom: 0; }
.zfp-contact-card span { color: var(--zfp-magenta); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.zfp-contact-card small { color: var(--zfp-muted); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.zfp-contact-card a,
.zfp-contact-card strong { color: var(--zfp-blue); font-size: 1.1rem; font-weight: 750; text-decoration: none; }

/* Footer */
.zfp-footer { position: relative; z-index: 2; padding: 70px 0 24px; background: var(--zfp-magenta); color: #fff; }
.zfp-footer__grid { display: grid; grid-template-columns: 1.3fr .95fr .8fr; gap: 70px; align-items: start; }
.zfp-footer__brand img { width: 185px; margin-bottom: 23px; filter: brightness(0) invert(1); opacity: .96; }
.zfp-footer p { margin: 0; color: rgba(255,255,255,.78); font-size: .86rem; }
.zfp-footer nav { display: grid; gap: 8px; }
.zfp-footer a { color: #fff; text-decoration: none; }
.zfp-footer nav a { padding: 3px 0; font-size: .85rem; font-weight: 700; }
.zfp-footer__contact { display: grid; gap: 10px; justify-items: start; }
.zfp-footer__contact a { font-size: .9rem; font-weight: 750; }
.zfp-footer__bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.68); font-size: .76rem; }

@media (max-width: 1100px) {
    .zfp-brand img { width: 180px; }
    .zfp-nav { gap: 17px; }
    .zfp-nav > a { font-size: .8rem; }
    .zfp-home-hero__inner { grid-template-columns: 1fr 270px; gap: 35px; }
    .zfp-home-hero h1 { font-size: clamp(2.85rem, 4.8vw, 3.75rem); }
    .zfp-about-preview__copy { padding: 60px 48px; }
    .zfp-contact__grid { gap: 42px; }
}

@media (max-width: 920px) {
    .zfp-header,
    .zfp-header.is-scrolled { height: 78px; }
    .zfp-menu-toggle { display: flex; }
    .zfp-nav { position: fixed; inset: 78px 0 auto; display: none; align-items: stretch; flex-direction: column; gap: 2px; padding: 22px 24px 28px; border-top: 1px solid var(--zfp-line); background: rgba(255,255,255,.98); box-shadow: 0 30px 60px rgba(10,18,111,.12); }
    .zfp-nav.is-open { display: flex; }
    .zfp-nav > a { min-height: 48px; font-size: .95rem; }
    .zfp-nav__cta { justify-content: center; margin-top: 8px; }
    .zfp-home-hero { min-height: 700px; }
    .zfp-home-hero__mesh { width: 78%; opacity: .45; }
    .zfp-home-hero__inner { grid-template-columns: 1fr; padding: 75px 0 50px; }
    .zfp-home-hero__copy { max-width: 720px; }
    .zfp-home-hero__facts { width: min(100%, 720px); display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; }
    .zfp-home-hero__facts div { grid-template-columns: 1fr; border-bottom: 0; border-right: 1px solid var(--zfp-line); }
    .zfp-home-hero__facts div:last-child { border-right: 0; }
    .zfp-service-grid { grid-template-columns: repeat(2, 1fr); }
    .zfp-about-preview__grid { grid-template-columns: 1fr; }
    .zfp-about-preview__photo { min-height: 520px; }
    .zfp-about-preview__photo > div { right: 24px; }
    .zfp-cta__grid { grid-template-columns: 1fr; }
    .zfp-cta__copy { padding: 70px 42px; }
    .zfp-cta__photo { min-height: 380px; }
    .zfp-service-row { grid-template-columns: 190px 1fr; gap: 42px; }
    .zfp-about-hero__grid { grid-template-columns: 1fr; gap: 55px; }
    .zfp-about-hero__photo { height: 650px; min-height: 0; }
    .zfp-story__grid { grid-template-columns: 200px 1fr; gap: 50px; }
    .zfp-credentials__grid { grid-template-columns: 1fr; }
    .zfp-contact__grid { grid-template-columns: 1fr; }
    .zfp-contact__intro { max-width: 650px; }
    .zfp-footer__grid { grid-template-columns: 1fr 1fr; }
    .zfp-footer__contact { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    .zfp-shell { width: min(calc(100% - 32px), var(--zfp-shell)); }
    .zfp-section { padding: 64px 0; }
    .zfp-brand img { width: 145px; }
    .zfp-main h1 { font-size: clamp(2.3rem, 10.5vw, 3.2rem); }
    .zfp-main h2 { font-size: clamp(2rem, 8.5vw, 2.75rem); }
    .zfp-kicker { margin-bottom: 18px; font-size: .66rem; line-height: 1.45; }
    .zfp-kicker span { width: 34px; height: 7px; flex: 0 0 auto; }
    .zfp-home-hero { min-height: 0; }
    .zfp-home-hero::before { opacity: .55; }
    .zfp-home-hero__mesh { inset: 0 -52% 0 auto; width: 132%; opacity: .2; mask-image: linear-gradient(90deg, transparent, #000 52%); }
    .zfp-home-hero__inner { padding: 52px 0 38px; gap: 30px; }
    .zfp-home-hero h1 { font-size: clamp(1.95rem, 8.4vw, 2.5rem); line-height: 1.07; }
    .zfp-main .zfp-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .zfp-button { width: 100%; min-height: 52px; padding-inline: 16px; gap: 10px; }
    .zfp-home-hero__facts { grid-template-columns: repeat(3, 1fr); padding: 10px 12px; }
    .zfp-home-hero__facts div { grid-template-columns: 1fr; align-content: center; gap: 4px; min-width: 0; padding: 10px 7px; border-right: 1px solid var(--zfp-line); border-bottom: 0; }
    .zfp-home-hero__facts div:last-child { border-right: 0; }
    .zfp-home-hero__facts strong { font-size: 1.45rem; }
    .zfp-home-hero__facts span { font-size: .59rem; line-height: 1.35; letter-spacing: .025em; }
    .zfp-quote__inner { grid-template-columns: 62px 1fr; gap: 12px; padding: 54px 0; }
    .zfp-quote img { width: 68px; height: 68px; }
    .zfp-quote blockquote { font-size: 1.3rem; }
    .zfp-quote p { grid-column: 1 / -1; margin: 18px 0 0; font-size: .93rem; }
    .zfp-section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 38px; }
    .zfp-service-grid { grid-template-columns: 1fr; }
    .zfp-service-tile { min-height: 270px; padding: 28px; }
    .zfp-service-tile img { width: 120px; height: 120px; top: 18px; right: 14px; }
    .zfp-about-preview { padding-bottom: 64px; }
    .zfp-about-preview__photo { height: 380px; min-height: 0; }
    .zfp-about-preview__copy { padding: 40px 23px 44px; }
    .zfp-about-preview__photo > div { right: 14px; bottom: 14px; }
    .zfp-cta__copy { padding: 52px 23px; }
    .zfp-cta h2 { max-width: 100%; font-size: clamp(2rem, 8vw, 2.55rem); }
    .zfp-cta__photo { min-height: 260px; }
    .zfp-page-hero { min-height: 440px; }
    .zfp-page-hero__inner { padding: 70px 0 50px; }
    .zfp-page-hero p { font-size: 1rem; }
    .zfp-service-row { grid-template-columns: 1fr; gap: 22px; padding: 44px 0; }
    .zfp-service-row__icon { height: 160px; }
    .zfp-service-row__icon img { width: 132px; height: 132px; }
    .zfp-about-hero { padding: 24px 0 62px; }
    .zfp-about-hero__photo { height: 380px; min-height: 0; }
    .zfp-about-hero__grid { gap: 32px; }
    .zfp-story__grid { grid-template-columns: 1fr; gap: 38px; }
    .zfp-story__aside { position: static; }
    .zfp-story blockquote { padding: 28px 25px; }
    .zfp-certs-hero { min-height: 500px; }
    .zfp-certs-hero__inner { padding: 70px 0; }
    .zfp-certs-hero__mesh { inset: 0 -58% 0 20%; opacity: .24; }
    .zfp-credential-card { padding: 30px 23px; }
    .zfp-empty { min-height: 580px; }
    .zfp-empty__inner { padding: 70px 0; }
    .zfp-empty__mesh { inset: 0 -78% 0 20%; opacity: .22; }
    .zfp-contact { min-height: 0; }
    .zfp-contact__mesh { inset: 0 -88% 0 10%; opacity: .22; }
    .zfp-contact__grid { padding: 60px 0; gap: 36px; }
    .zfp-contact-card { padding: 12px 20px; }
    .zfp-contact-card > div { grid-template-columns: 40px 1fr; gap: 7px 11px; min-height: 104px; padding: 18px 0; }
    .zfp-contact-card small { align-self: end; }
    .zfp-contact-card a,
    .zfp-contact-card strong { grid-column: 2; }
    .zfp-footer { padding-top: 46px; }
    .zfp-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .zfp-footer__contact { grid-column: auto; }
    .zfp-footer__bottom { margin-top: 36px; }
}

@media (max-width: 360px) {
    .zfp-main .zfp-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .zfp-reveal { opacity: 1; transform: none; }
}

.zfp-header a:focus-visible,
.zfp-main a:focus-visible,
.zfp-footer a:focus-visible,
.zfp-menu-toggle:focus-visible { outline: 3px solid var(--zfp-magenta); outline-offset: 4px; }
