/* Dedicated service landing pages */

.service-page .nav-menu a {
    white-space: nowrap;
}

.service-hero {
    position: relative;
    padding: clamp(2.4rem, 5vw, 5.5rem) 0 0;
    background:
        linear-gradient(rgba(9, 20, 22, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 20, 22, 0.045) 1px, transparent 1px),
        var(--paper);
    background-size: 72px 72px;
    overflow: hidden;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: clamp(2.2rem, 4vw, 4rem);
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.service-breadcrumb a {
    color: var(--ink);
    text-decoration: none;
}

.service-breadcrumb a:hover {
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

.service-breadcrumb span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-hero-grid {
    min-height: min(720px, calc(100svh - 190px));
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
    gap: clamp(2.5rem, 6vw, 7rem);
    align-items: center;
}

.service-hero-copy {
    position: relative;
    z-index: 2;
    padding-block: 1rem 4rem;
}

.service-hero-copy h1 {
    max-width: 10.5ch;
    margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
    font-size: clamp(3.45rem, 6.6vw, 7.15rem);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.94;
}

.service-hero-lead {
    max-width: 650px;
    margin-bottom: 2rem;
    color: var(--text);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.8;
}

.service-hero-visual {
    position: relative;
    min-height: 650px;
    align-self: stretch;
}

.service-hero-image,
.service-visual-graphic {
    position: absolute;
    inset: 0;
    margin: 0;
    background: var(--ink);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 70px), calc(100% - 70px) 100%, 0 100%);
    overflow: hidden;
}

.service-hero-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 45%, rgba(9, 20, 22, 0.78) 100%);
    pointer-events: none;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-image figcaption {
    position: absolute;
    right: 5.5rem;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    color: var(--white);
}

.service-hero-image figcaption span {
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-hero-image figcaption strong {
    max-width: 18ch;
    font-size: 0.92rem;
    text-align: right;
}

.service-visual-graphic {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(2rem, 5vw, 4.5rem);
    color: var(--white);
    isolation: isolate;
}

.service-visual-graphic::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    background:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 72px 72px;
}

.service-visual-graphic::after {
    position: absolute;
    right: -16%;
    bottom: 11%;
    z-index: -1;
    width: 72%;
    aspect-ratio: 1;
    content: "";
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0.88;
}

.service-visual-graphic > span,
.service-visual-graphic > small {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.service-visual-graphic > span {
    width: fit-content;
    padding: 0.45rem 0.65rem;
    color: var(--ink);
    background: var(--signal);
}

.service-visual-graphic > strong {
    max-width: 8ch;
    font-size: clamp(3.3rem, 7vw, 7rem);
    letter-spacing: -0.07em;
    line-height: 0.86;
    text-transform: uppercase;
}

.service-visual-graphic > small {
    color: rgba(255, 255, 255, 0.64);
}

.service-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 2rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-proof div {
    min-height: 106px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.7rem;
    align-items: center;
    padding: 1rem 1.2rem;
    border-right: 1px solid var(--line);
}

.service-proof div:last-child {
    border-right: 0;
}

.service-proof span {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.64rem;
}

.service-proof strong {
    font-size: 0.84rem;
    line-height: 1.35;
}

.service-overview,
.service-related {
    padding-block: var(--section-space);
}

.service-scope-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(2.5rem, 5vw, 5rem);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-scope-grid article {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.5rem, 3vw, 2.6rem);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-scope-grid article span {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.68rem;
}

.service-scope-grid article h3 {
    max-width: 17ch;
    margin: 0;
    font-size: clamp(1.25rem, 2.1vw, 1.85rem);
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.service-ideal {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
    gap: clamp(3rem, 8vw, 8rem);
    margin-top: clamp(3rem, 7vw, 7rem);
    padding: clamp(2.2rem, 5vw, 5rem);
    color: var(--ink);
    background: var(--signal);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 42px), calc(100% - 42px) 100%, 0 100%);
}

.service-ideal .eyebrow {
    color: rgba(9, 20, 22, 0.62);
}

.service-ideal h2 {
    max-width: 11ch;
    margin: 0;
    font-size: clamp(2.3rem, 4.5vw, 4.8rem);
    letter-spacing: -0.06em;
    line-height: 0.96;
}

.service-ideal ul {
    display: grid;
    align-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-ideal li {
    position: relative;
    padding: 1.2rem 0 1.2rem 2rem;
    border-bottom: 1px solid rgba(9, 20, 22, 0.2);
    font-weight: 700;
}

.service-ideal li:first-child {
    border-top: 1px solid rgba(9, 20, 22, 0.2);
}

.service-ideal li::before {
    position: absolute;
    top: 1.65rem;
    left: 0;
    width: 8px;
    height: 8px;
    content: "";
    background: var(--ink);
}

.service-page-process {
    padding-block: var(--section-space);
}

.service-process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
    margin: clamp(3rem, 6vw, 6rem) 0 0;
    padding: 0;
    list-style: none;
}

.service-process-list li {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
    padding: 2rem 0;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.service-process-list > li > span {
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 0.7rem;
}

.service-process-list h3 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.5rem, 2.8vw, 2.5rem);
    letter-spacing: -0.045em;
}

.service-process-list p {
    max-width: 38ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
}

.service-related {
    background: var(--mist);
}

.service-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: clamp(2.5rem, 5vw, 5rem);
}

.service-related-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--white);
    background: var(--ink);
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.service-related-card:hover,
.service-related-card:focus-visible {
    color: var(--ink);
    background: var(--signal);
    transform: translateY(-6px);
}

.service-related-card > span {
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.service-related-card:hover > span,
.service-related-card:focus-visible > span {
    color: rgba(9, 20, 22, 0.62);
}

.service-related-card h3 {
    margin: auto 0 1rem;
    font-size: clamp(1.6rem, 3vw, 2.65rem);
    letter-spacing: -0.055em;
    line-height: 1;
}

.service-related-card p {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.84rem;
}

.service-related-card:hover p,
.service-related-card:focus-visible p {
    color: rgba(9, 20, 22, 0.68);
}

.service-related-card strong {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid currentColor;
    font-size: 0.82rem;
}

.service-page .footer-services {
    max-height: none;
}

@media (max-width: 1180px) {
    .service-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
        gap: 3rem;
    }

    .service-hero-copy h1 {
        font-size: clamp(3.3rem, 6.4vw, 5.9rem);
    }
}

@media (max-width: 980px) {
    .service-hero-grid {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .service-hero-copy {
        padding-bottom: 1rem;
    }

    .service-hero-copy h1 {
        max-width: 12ch;
        font-size: clamp(3.5rem, 10.5vw, 6.4rem);
    }

    .service-hero-visual {
        min-height: 610px;
    }

    .service-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-proof div:nth-child(2) {
        border-right: 0;
    }

    .service-proof div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .service-scope-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-ideal {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 720px) {
    .service-hero {
        padding-top: 1.7rem;
    }

    .service-breadcrumb {
        margin-bottom: 2rem;
    }

    .service-breadcrumb a:nth-of-type(2),
    .service-breadcrumb a:nth-of-type(2) + span {
        display: none;
    }

    .service-hero-copy h1 {
        max-width: 11ch;
        font-size: clamp(2.85rem, 13.5vw, 5.2rem);
        line-height: 0.96;
    }

    .service-hero-lead {
        font-size: 0.96rem;
    }

    .service-hero-visual {
        min-height: min(560px, 68svh);
    }

    .service-hero-image figcaption {
        right: 4rem;
        bottom: 1.3rem;
        left: 1.2rem;
    }

    .service-visual-graphic {
        padding: 1.5rem;
    }

    .service-proof {
        grid-template-columns: 1fr;
    }

    .service-proof div,
    .service-proof div:nth-child(n) {
        min-height: 76px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service-proof div:last-child {
        border-bottom: 0;
    }

    .service-scope-grid,
    .service-process-list,
    .service-related-grid {
        grid-template-columns: 1fr;
    }

    .service-scope-grid article {
        min-height: 180px;
    }

    .service-ideal {
        margin-inline: calc(var(--gutter) * -1);
        padding: 3rem 1rem 4rem;
        clip-path: none;
    }

    .service-process-list {
        gap: 0;
    }

    .service-process-list li {
        min-height: 240px;
    }

    .service-related-card {
        min-height: 300px;
    }
}

@media (max-width: 430px) {
    .service-hero-copy h1 {
        font-size: clamp(2.65rem, 13vw, 3.5rem);
    }

    .service-hero-visual {
        min-height: 480px;
    }
}

/* Proof from completed work */
.service-practice-proof {
    padding-block: var(--section-space);
    background: var(--paper);
}

.practice-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: clamp(2.5rem, 5vw, 5rem);
}

.practice-proof-grid--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.practice-proof-media {
    position: relative;
    aspect-ratio: 4 / 3;
    margin: 0;
    background: var(--ink);
    overflow: hidden;
}

.practice-proof-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.practice-proof-media:hover img {
    transform: scale(1.025);
}

.practice-proof-media figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    padding: 2.5rem 1.1rem 1rem;
    color: var(--white);
    background: linear-gradient(180deg, transparent, rgba(9, 20, 22, 0.88));
}

.practice-proof-media figcaption span,
.practice-proof-panel > div > span {
    font-family: var(--font-mono);
    font-size: 0.63rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.practice-proof-note {
    max-width: 760px;
    margin: 1.2rem 0 0 auto;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.7;
}

.practice-proof-panel {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(2rem, 6vw, 7rem);
    margin-top: clamp(2.5rem, 5vw, 5rem);
    padding: clamp(2rem, 5vw, 4rem);
    color: var(--white);
    background: var(--ink);
}

.practice-proof-panel > div {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.practice-proof-panel > div > span {
    color: var(--signal);
}

.practice-proof-panel > div > strong {
    max-width: 18ch;
    font-size: clamp(1.4rem, 2.5vw, 2.1rem);
    letter-spacing: -0.045em;
    line-height: 1.15;
}

.practice-proof-panel ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.practice-proof-panel li {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 0;
    border-top: 1px solid var(--line-light);
}

.practice-proof-panel li span {
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 0.64rem;
}

.practice-proof-panel li p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.service-related-all {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Static service hub */
.service-hub-page,
.privacy-page {
    background: var(--paper);
}

.service-hub-hero,
.privacy-hero {
    position: relative;
    padding: clamp(2.4rem, 5vw, 5.5rem) 0 clamp(4rem, 8vw, 8rem);
    background:
        linear-gradient(rgba(9, 20, 22, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 20, 22, 0.045) 1px, transparent 1px),
        var(--paper);
    background-size: 72px 72px;
}

.service-hub-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    gap: clamp(2.5rem, 8vw, 9rem);
    align-items: end;
}

.service-hub-hero h1,
.privacy-hero h1 {
    max-width: 11ch;
    margin: 0;
    font-size: clamp(3.6rem, 7.6vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 0.92;
}

.service-hub-hero__lead > p {
    margin: 0 0 2rem;
    color: var(--text);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.8;
}

.service-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: clamp(3rem, 7vw, 7rem);
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.service-category-nav a {
    padding: 0.7rem 0.9rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 0.63rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.service-category-nav a:hover,
.service-category-nav a:focus-visible {
    background: var(--signal);
    border-color: var(--signal);
}

.service-hub-category {
    padding-block: var(--section-space);
    scroll-margin-top: 96px;
}

.service-hub-category:nth-child(even) {
    background: var(--mist);
}

.service-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: clamp(2.5rem, 5vw, 5rem);
}

.service-hub-card {
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--line);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-hub-card:hover,
.service-hub-card:focus-within {
    z-index: 1;
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(9, 20, 22, 0.11);
}

.service-hub-card > a {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    text-decoration: none;
}

.service-hub-card figure,
.service-hub-card__graphic {
    aspect-ratio: 4 / 3;
    margin: 0;
    background: var(--ink);
    overflow: hidden;
}

.service-hub-card figure img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-hub-card:hover figure img {
    transform: scale(1.035);
}

.service-hub-card__graphic {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    color: var(--white);
    isolation: isolate;
}

.service-hub-card__graphic::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    background:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
}

.service-hub-card__graphic::after {
    position: absolute;
    right: -10%;
    bottom: -30%;
    z-index: -1;
    width: 65%;
    aspect-ratio: 1;
    content: "";
    background: var(--cyan);
    border-radius: 50%;
}

.service-hub-card__graphic span,
.service-hub-card__graphic strong {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-hub-card__body {
    min-height: 310px;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(1.4rem, 3vw, 2rem);
}

.service-hub-card__body > span {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.61rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.service-hub-card__body h3 {
    margin: 1rem 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.service-hub-card__body p {
    margin: 0 0 2rem;
    color: var(--muted);
    line-height: 1.65;
}

.service-hub-card__body > strong {
    margin-top: auto;
    font-size: 0.77rem;
}

.service-hub-cta {
    padding-block: clamp(4rem, 9vw, 8rem);
    color: var(--white);
    background: var(--ink);
}

.service-hub-cta .section-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(2rem, 7vw, 8rem);
    align-items: end;
}

.service-hub-cta h2 {
    max-width: 16ch;
    margin-bottom: 1rem;
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.service-hub-cta p:not(.eyebrow) {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

.service-hub-cta .section-shell > div:last-child {
    display: grid;
    gap: 0.75rem;
}

/* Privacy information page */
.privacy-hero h1 {
    max-width: none;
}

.privacy-hero > .section-shell > p:last-child {
    max-width: 760px;
    margin: 2rem 0 0;
    color: var(--text);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
}

.privacy-content {
    padding-block: var(--section-space);
    background: var(--white);
}

.privacy-layout {
    display: grid;
    grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
    gap: clamp(3rem, 8vw, 9rem);
    align-items: start;
}

.privacy-toc {
    position: sticky;
    top: 120px;
    display: grid;
    border-top: 3px solid var(--ink);
}

.privacy-toc strong,
.privacy-toc a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
}

.privacy-toc strong {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.privacy-toc a {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}

.privacy-toc a:hover,
.privacy-toc a:focus-visible {
    color: var(--ink);
}

.privacy-sections {
    min-width: 0;
}

.privacy-sections > section {
    padding: 0 0 clamp(3rem, 6vw, 5rem);
    scroll-margin-top: 120px;
}

.privacy-sections > section + section {
    padding-top: clamp(3rem, 6vw, 5rem);
    border-top: 1px solid var(--line);
}

.privacy-sections h2 {
    max-width: 20ch;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 3.7vw, 3.8rem);
    letter-spacing: -0.055em;
    line-height: 1;
}

.privacy-sections h3 {
    margin: 2rem 0 0.8rem;
    font-size: 1.1rem;
}

.privacy-sections p,
.privacy-sections li {
    color: var(--text);
    line-height: 1.85;
}

.privacy-sections p {
    max-width: 800px;
}

.privacy-sections li + li {
    margin-top: 0.55rem;
}

.privacy-sections a {
    color: var(--ink);
    font-weight: 700;
    text-underline-offset: 0.24em;
}

.privacy-sections code {
    padding: 0.12rem 0.32rem;
    background: var(--mist);
    font-family: var(--font-mono);
    font-size: 0.82em;
}

.privacy-settings-button {
    min-height: 48px;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    color: var(--white);
    background: var(--ink);
    border: 0;
    font-weight: 800;
    cursor: pointer;
}

.privacy-note {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--white);
    background: var(--ink);
}

.privacy-note strong {
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.privacy-note p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1100px) {
    .practice-proof-grid--wide,
    .service-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-hub-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
        gap: 3rem;
    }
}

@media (max-width: 780px) {
    .practice-proof-grid,
    .practice-proof-grid--wide,
    .service-hub-grid,
    .service-hub-hero__grid,
    .service-hub-cta .section-shell,
    .privacy-layout,
    .practice-proof-panel {
        grid-template-columns: 1fr;
    }

    .practice-proof-media {
        aspect-ratio: 4 / 3;
    }

    .practice-proof-panel {
        gap: 2.5rem;
    }

    .service-related-all {
        justify-content: stretch;
    }

    .service-related-all .button {
        width: 100%;
    }

    .service-hub-hero h1,
    .privacy-hero h1 {
        font-size: clamp(3rem, 14vw, 5.6rem);
    }

    .service-category-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .service-category-nav a {
        display: flex;
        align-items: center;
    }

    .service-hub-card__body {
        min-height: 260px;
    }

    .service-hub-cta .section-shell > div:last-child {
        width: 100%;
    }

    .privacy-toc {
        position: static;
    }
}

@media (max-width: 430px) {
    .service-category-nav {
        grid-template-columns: 1fr;
    }

    .practice-proof-media,
    .service-hub-card figure,
    .service-hub-card__graphic {
        aspect-ratio: 1 / 1;
    }
}
