:root {
    --tk-bg: #f5f5f5;
    --tk-ink: #0a0a0a;
    --tk-muted: #777;
    --tk-soft: #ffffff;
    --tk-line: #e4e4e4;
    --tk-accent: #d5291f;
    --tk-radius: 18px;
    --tk-space: 20px;
    --tk-max: 1338px;
    --tk-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    background: #121212;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--tk-bg);
    color: var(--tk-ink);
    font-family: var(--tk-font);
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 0;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video,
iframe {
    display: block;
    max-width: 100%;
}

img,
video {
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
    letter-spacing: 0;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #050505;
    color: #fff;
    opacity: 1;
    pointer-events: none;
    transition: opacity 520ms ease, visibility 520ms ease;
}

.site-loader span {
    font-size: 28px;
    font-weight: 600;
    transform: translateY(8px);
    opacity: 0;
    animation: tk-loader-mark 960ms ease forwards;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes tk-loader-mark {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 60px;
    background: var(--tk-bg);
}

.admin-bar .site-header {
    top: 32px;
}

.admin-bar .menu-overlay {
    top: 32px;
}

.header-nav {
    width: 100%;
    height: 60px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 0 var(--tk-space);
}

.brand {
    position: relative;
    z-index: 101;
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 600;
}

.desktop-menu {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 92px;
    font-size: 16px;
    font-weight: 600;
}

.desktop-menu a {
    position: relative;
}

.desktop-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    background: var(--tk-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.desktop-menu a:hover::after,
.desktop-menu a:focus-visible::after {
    transform: scaleX(1);
}

.menu-toggle {
    position: relative;
    z-index: 101;
    justify-self: end;
    width: 59px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
    position: absolute;
    left: 0;
    width: 59px;
    height: 2px;
    background: var(--tk-ink);
    transition: transform 220ms ease, top 220ms ease, background 180ms ease;
}

.menu-toggle span:first-child {
    top: 4px;
}

.menu-toggle span:nth-child(2) {
    top: 14px;
}

.menu-open .menu-toggle span:first-child {
    top: 10px;
    transform: rotate(8deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    top: 10px;
    transform: rotate(-8deg);
}

.menu-toggle:hover span:not(.screen-reader-text),
.menu-toggle:focus-visible span:not(.screen-reader-text) {
    background: var(--tk-accent);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: var(--tk-bg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 260ms ease, visibility 260ms ease;
}

.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-overlay-inner {
    min-height: 100%;
    padding: 120px var(--tk-space) 32px;
    display: grid;
    grid-template-rows: 1fr auto;
    justify-items: center;
    text-align: center;
}

.menu-links {
    align-self: center;
    display: grid;
    gap: 0;
}

.menu-links a {
    font-size: 42px;
    line-height: 1.18;
    font-weight: 600;
    transition: color 160ms ease, transform 160ms ease;
}

.menu-links a:hover,
.menu-links a:focus-visible {
    color: var(--tk-accent);
    transform: translateY(-2px);
}

.menu-contact {
    display: grid;
    justify-items: center;
    gap: 14px;
    font-weight: 500;
}

.menu-contact p {
    margin: 0;
    color: var(--tk-muted);
}

.menu-email {
    position: relative;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 600;
}

.menu-email::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 6px;
    background: currentColor;
}

.menu-small-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
}

.site-main {
    min-height: 60vh;
}

.tk-page-content > * {
    margin-top: 0;
    margin-bottom: 0;
}

.tk-page-content > .home-hero,
.tk-page-content > .cv-panel {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.tk-page-content > .home-hero {
    padding-left: 6px;
    padding-right: 6px;
}

.tk-page-content > .home-hero > .wp-block-group__inner-container {
    width: 100%;
    max-width: none !important;
    flex: 1 1 100%;
    min-width: 0;
}

.tk-page-content .hero-panel {
    width: 100%;
    flex: 1 1 100%;
    min-width: 0;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.tk-page-content > .cv-panel {
    width: calc(100vw - 40px) !important;
    margin-left: calc(50% - 50vw + 20px) !important;
    margin-right: calc(50% - 50vw + 20px) !important;
}

.home-hero {
    min-height: 100vh;
    padding: 60px 6px 0;
    display: flex;
    align-items: flex-end;
}

.hero-panel {
    position: relative;
    width: 100%;
    flex: 1 1 100%;
    min-width: 0;
    min-height: 72vh;
    display: grid;
    align-content: end;
    gap: 36px;
    padding: 36px 20px 30px;
    overflow: hidden;
    border-radius: 0 0 var(--tk-radius) var(--tk-radius);
    background:
        linear-gradient(rgba(0, 0, 0, .38), rgba(0, 0, 0, .58)),
        repeating-linear-gradient(135deg, #181818 0, #181818 2px, #111 2px, #111 6px);
    color: #fff;
}

.hero-copy {
    display: grid;
    width: 100%;
    gap: 20px;
}

.hero-logo {
    margin: 0;
    font-size: 42px;
    line-height: .92;
    font-weight: 600;
}

.hero-copy h1 {
    max-width: 860px;
    margin: 0;
    font-size: 38px;
    line-height: .96;
    font-weight: 600;
}

.hero-eyebrow {
    width: max-content;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-copy ul {
    display: grid;
    gap: 8px;
    justify-items: start;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    font-weight: 600;
}

.hero-card {
    width: min(100%, 420px);
    display: grid;
    grid-template-columns: 112px 1fr;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    color: var(--tk-ink);
}

.hero-card::before {
    content: "";
    width: 112px;
    aspect-ratio: 1 / 1.22;
    border-radius: 12px;
    background: linear-gradient(145deg, #ddd, #fff);
}

.hero-card p,
.hero-statement {
    margin: 0;
    font-weight: 600;
}

.hero-card a {
    display: inline-flex;
    width: max-content;
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--tk-ink);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.hero-card a:hover,
.hero-card a:focus-visible {
    background: var(--tk-accent);
}

.hero-statement {
    max-width: 640px;
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}

.hero-skill-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 700;
}

.hero-skill-list li::before {
    content: "+ ";
    color: var(--tk-accent);
}

.hero-proof-grid,
.profile-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.hero-proof-grid p,
.profile-proof-grid p {
    margin: 0;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 600;
}

.hero-proof-grid strong,
.profile-proof-grid strong {
    color: #fff;
    font-size: 18px;
}

.section-kicker {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.split-intro,
.home-focus,
.cv-panel,
.page-hero,
.project-filters,
.projects-archive,
.projects-preview,
.services-band,
.studio-layout,
.experience-list,
.tools-section,
.contact-layout,
.content-section,
.next-projects {
    width: min(calc(100% - 40px), var(--tk-max));
    margin: 0 auto;
}

.split-intro {
    display: grid;
    gap: 28px;
    padding: 110px 0 130px;
}

.home-focus {
    display: grid;
    gap: 28px;
    padding: 0 0 126px;
}

.focus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.focus-card {
    min-height: 260px;
    display: grid;
    align-content: space-between;
    gap: 24px;
    padding: 24px;
    border-radius: 18px;
    background: #101010;
    color: #fff;
}

.focus-card:nth-child(2) {
    background: #fff;
    color: var(--tk-ink);
}

.focus-card:nth-child(3) {
    background: var(--tk-accent);
}

.focus-number,
.focus-card h3,
.focus-card p {
    margin: 0;
}

.focus-number {
    color: currentColor;
    opacity: .58;
    font-size: 13px;
    font-weight: 700;
}

.focus-card h3 {
    font-size: 28px;
    line-height: .96;
    font-weight: 600;
}

.focus-card p:not(.focus-number) {
    color: currentColor;
    opacity: .74;
    font-weight: 600;
}

.cv-panel {
    display: grid;
    gap: 24px;
    padding: 32px 24px;
    margin-bottom: 100px;
    border-radius: 18px;
    background: #101010;
    color: #fff;
}

.cv-panel h2,
.cv-panel p {
    margin: 0;
}

.cv-panel h2 {
    max-width: 980px;
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
}

.cv-panel > p:not(.section-kicker) {
    max-width: 620px;
    color: rgba(255, 255, 255, .68);
    font-weight: 600;
}

.split-intro h2,
.case-text-block h2,
.studio-statement h2,
.tools-section h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
}

.split-intro p:last-child,
.case-text-block p:not(.section-kicker),
.studio-statement p,
.contact-details p,
.content-narrow {
    max-width: 660px;
    color: #5f5f5f;
    font-size: 18px;
    font-weight: 500;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: end;
    margin-bottom: 30px;
}

.section-heading h2,
.page-hero h1,
.project-detail-hero h1 {
    margin: 0;
    font-size: 64px;
    line-height: .92;
    font-weight: 600;
}

.section-heading a {
    width: max-content;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 2px solid var(--tk-ink);
}

.projects-preview {
    padding-bottom: 130px;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.project-card {
    min-width: 0;
}

.project-card a {
    display: grid;
    gap: 6px;
}

.project-card-head {
    min-height: 58px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
}

.project-card h2 {
    margin: 0;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
}

.project-card span {
    color: var(--tk-muted);
    font-size: 13px;
    font-weight: 500;
}

.project-card span b {
    color: var(--tk-accent);
    font-weight: 600;
    margin-right: 4px;
}

.project-card i {
    width: 26px;
    height: 6px;
    background-image: radial-gradient(circle, #dedede 2px, transparent 3px);
    background-size: 8px 6px;
}

.project-card-media {
    position: relative;
    aspect-ratio: 1.22 / 1;
    overflow: hidden;
    border-radius: var(--tk-radius);
    background: #ececec;
}

.project-card-media img,
.project-card-media .project-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 520ms ease, filter 520ms ease;
}

.project-card a:hover .project-card-media img,
.project-card a:focus-visible .project-card-media img {
    transform: scale(1.035);
    filter: saturate(.88);
}

.project-placeholder {
    display: grid;
    place-items: center;
    color: #888;
    font-weight: 600;
}

.project-card-types {
    margin: 4px 0 26px;
    color: var(--tk-muted);
    font-size: 13px;
    font-weight: 500;
}

.services-band {
    padding: 90px 0;
    color: #d8d8d8;
    background: #101010;
}

.services-band > .section-kicker,
.services-band > h2,
.services-page .service-list {
    width: min(calc(100% - 40px), var(--tk-max));
    margin-left: auto;
    margin-right: auto;
}

.services-band h2 {
    margin: 0 0 50px;
    color: #777;
    font-size: 72px;
    line-height: .92;
    font-weight: 600;
}

.service-list {
    display: grid;
}

.service-list article,
.service-list .service-item {
    display: grid;
    gap: 14px;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.service-list span,
.service-list .service-number {
    margin: 0;
    color: #777;
    font-size: 13px;
    font-weight: 600;
}

.service-list h3,
.service-list h2 {
    margin: 0;
    color: #ededed;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
}

.service-list p:not(.service-number) {
    max-width: 520px;
    margin: 0;
    color: #8f8f8f;
    font-weight: 500;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chips span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f1f1f1;
    color: var(--tk-ink);
}

.page-hero {
    min-height: 540px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    align-content: end;
    padding: 150px 0 58px;
}

.page-hero > div {
    display: grid;
    gap: 18px;
    max-width: 520px;
}

.page-hero p {
    margin: 0;
    color: #606060;
    font-size: 18px;
    font-weight: 500;
}

.page-hero .section-kicker {
    color: var(--tk-ink);
}

.project-filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 54px;
}

.search-control,
.select-control {
    display: block;
}

.search-control input,
.select-control select {
    width: 100%;
    height: 58px;
    padding: 0 20px;
    border: 0;
    outline: 0;
    border-radius: 14px;
    background: #fff;
    color: var(--tk-ink);
    font-weight: 600;
}

.search-control input:focus,
.select-control select:focus {
    box-shadow: inset 0 0 0 2px var(--tk-accent);
}

.projects-archive {
    padding-bottom: 120px;
}

.empty-state {
    margin: 40px 0;
    color: var(--tk-muted);
    font-weight: 600;
}

.is-hidden {
    display: none;
}

.single-project {
    padding-top: 60px;
}

.project-detail-hero {
    width: min(calc(100% - 40px), var(--tk-max));
    min-height: 860px;
    margin: 0 auto;
    display: grid;
    align-content: end;
    gap: 56px;
    padding: 120px 0 66px;
}

.case-intro {
    display: grid;
    gap: 28px;
}

.case-intro > p:last-child {
    max-width: 720px;
    margin: 0;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 500;
}

.project-info {
    display: grid;
    margin: 0;
    border-top: 1px solid var(--tk-line);
}

.project-info div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--tk-line);
}

.project-info dt,
.project-info dd {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.project-info dt {
    color: #999;
}

.project-info dd {
    text-align: right;
}

.case-media-pair,
.case-gallery,
.motion-section,
.case-text-block {
    width: min(calc(100% - 40px), var(--tk-max));
    margin: 0 auto;
}

.case-media-pair {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 120px;
}

.case-media-pair figure,
.case-gallery figure {
    margin: 0;
    overflow: hidden;
    background: #ececec;
}

.case-media-pair figure {
    border-radius: 25px;
}

.case-media-pair img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.case-text-block {
    display: grid;
    gap: 28px;
    padding: 0 0 70px;
}

.case-text-block .button-dark {
    width: max-content;
}

.motion-section {
    display: grid;
    gap: 20px;
    padding-bottom: 6px;
}

.motion-frame {
    overflow: hidden;
    border-radius: 18px;
    background: #050505;
}

.motion-frame video,
.motion-frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.case-gallery {
    display: grid;
    gap: 6px;
    padding-bottom: 120px;
}

.case-gallery img {
    width: 100%;
    max-height: 780px;
    object-fit: cover;
}

.final-thoughts {
    padding-bottom: 100px;
}

.next-projects {
    padding-bottom: 100px;
}

.button-dark,
.button-light,
.button-ghost,
.contact-form button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button-dark,
.contact-form button {
    border: 0;
    background: var(--tk-ink);
    color: #fff;
}

.button-light {
    border: 0;
    background: #fff;
    color: var(--tk-ink);
}

.button-ghost {
    border: 1px solid currentColor;
    background: transparent;
    color: var(--tk-ink);
}

.hero-panel .button-ghost,
.cv-panel .button-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .45);
}

.button-dark:hover,
.button-dark:focus-visible,
.button-light:hover,
.button-light:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
    background: var(--tk-accent);
    border-color: var(--tk-accent);
    color: #fff;
    transform: translateY(-1px);
}

.studio-layout,
.contact-layout {
    display: grid;
    gap: 34px;
    padding: 0 0 110px;
}

.studio-facts,
.contact-panel {
    padding: 24px;
    border-radius: 18px;
    background: #fff;
}

.profile-proof-grid {
    margin-top: 28px;
}

.profile-proof-grid p {
    background: #fff;
    color: #666;
}

.profile-proof-grid strong {
    color: var(--tk-ink);
}

.studio-portrait {
    margin: 0 0 24px;
    overflow: hidden;
    border-radius: 14px;
    background: #efefef;
}

.studio-portrait img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.studio-facts ul {
    display: grid;
    gap: 10px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
    font-weight: 600;
}

.studio-facts li::before {
    content: "+ ";
    color: var(--tk-accent);
}

.experience-list,
.tools-section {
    padding-bottom: 110px;
}

.experience-list > div,
.experience-list .experience-items {
    display: grid;
    margin-top: 36px;
    border-top: 1px solid var(--tk-line);
}

.experience-list article,
.experience-list .experience-item {
    display: grid;
    gap: 8px;
    padding: 24px 0;
    border-bottom: 1px solid var(--tk-line);
}

.experience-list span,
.experience-list .experience-year {
    margin: 0;
    color: var(--tk-muted);
    font-size: 13px;
    font-weight: 600;
}

.experience-list h2 {
    margin: 0;
    font-size: 24px;
}

.experience-list p {
    margin: 0;
    color: var(--tk-muted);
    font-weight: 600;
}

.tools-section {
    display: grid;
    gap: 24px;
}

.skill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.skill-cloud span {
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 700;
}

.services-page {
    padding-top: 0;
    background: #101010;
}

.contact-layout {
    grid-template-columns: 1fr;
}

.contact-details {
    display: grid;
    align-content: start;
    gap: 22px;
}

.big-contact-link {
    width: max-content;
    max-width: 100%;
    border-bottom: 2px solid currentColor;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 600;
    word-break: break-word;
}

.contact-panel h2 {
    margin: 0 0 28px;
    font-size: 30px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #666;
    font-size: 13px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 0;
    outline: 0;
    border-radius: 12px;
    background: #f3f3f3;
    color: var(--tk-ink);
    font-size: 18px;
    font-weight: 600;
}

.contact-form input {
    height: 58px;
    padding: 0 18px;
}

.contact-form textarea {
    min-height: 150px;
    padding: 18px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: inset 0 0 0 2px var(--tk-accent);
}

.contact-form button {
    min-height: 58px;
}

.tk-hp {
    position: absolute;
    left: -9999px;
}

.form-status {
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 600;
}

.form-status.success {
    background: #e9f7ec;
    color: #126326;
}

.form-status.error {
    background: #fff0f0;
    color: #8f1c1c;
}

.content-section {
    padding: 0 0 120px;
}

.content-narrow {
    margin: 0 auto;
}

.site-footer {
    background: var(--tk-bg);
}

.footer-cta,
.footer-bottom {
    width: min(calc(100% - 40px), var(--tk-max));
    margin: 0 auto;
}

.footer-cta {
    display: grid;
    gap: 28px;
    align-items: end;
    padding: 90px 0;
    border-top: 1px solid var(--tk-line);
}

.footer-cta h2 {
    margin: 10px 0 12px;
    font-size: 48px;
    line-height: 1;
}

.footer-cta p {
    margin: 0;
    color: var(--tk-muted);
    font-weight: 600;
}

.footer-bottom {
    display: grid;
    gap: 40px;
    padding: 60px 0 34px;
    border-top: 1px solid var(--tk-line);
}

.footer-bottom p {
    margin: 24px 0 0;
    color: var(--tk-muted);
    font-size: 13px;
    font-weight: 600;
}

.footer-bottom nav {
    display: grid;
    gap: 12px;
    justify-items: start;
    font-weight: 600;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (min-width: 760px) {
    :root {
        --tk-space: 36px;
    }

    .desktop-menu {
        display: flex;
    }

    .menu-links a {
        font-size: 60px;
    }

    .hero-panel {
        min-height: 82vh;
        padding: 54px;
    }

    .hero-logo {
        font-size: 68px;
    }

    .hero-copy h1 {
        max-width: min(1040px, calc(100vw - 180px));
        font-size: 56px;
    }

    .hero-copy ul,
    .hero-skill-list {
        position: absolute;
        right: 54px;
        top: 40%;
        text-align: right;
        justify-items: end;
    }

    .hero-card {
        position: absolute;
        right: 54px;
        bottom: 88px;
    }

    .hero-statement {
        max-width: 760px;
        font-size: 22px;
    }

    .hero-proof-grid {
        width: min(760px, 100%);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .split-intro,
    .page-hero {
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }

    .focus-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cv-panel {
        grid-template-columns: 160px 1fr;
        align-items: end;
        padding: 46px;
    }

    .cv-panel .section-kicker,
    .cv-panel .hero-actions {
        grid-column: 1;
    }

    .cv-panel h2,
    .cv-panel > p:not(.section-kicker) {
        grid-column: 2;
    }

    .cv-panel h2 {
        font-size: 56px;
    }

    .split-intro h2,
    .case-text-block h2,
    .studio-statement h2,
    .tools-section h2 {
        font-size: 48px;
    }

    .section-heading {
        grid-template-columns: 120px 1fr auto;
    }

    .section-heading h2,
    .page-hero h1,
    .project-detail-hero h1 {
        font-size: 112px;
    }

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

    .project-card-media {
        aspect-ratio: 1.18 / 1;
    }

    .services-band h2 {
        font-size: 132px;
    }

    .service-list article,
    .service-list .service-item {
        grid-template-columns: 180px minmax(220px, 360px) 1fr;
        align-items: start;
    }

    .page-hero {
        min-height: 650px;
    }

    .project-filters {
        width: min(520px, calc(100% - 72px));
        margin-left: calc((100% - min(calc(100% - 72px), var(--tk-max))) / 2);
        grid-template-columns: minmax(240px, 1fr) 140px;
        margin-right: auto;
    }

    .project-detail-hero {
        min-height: 940px;
    }

    .case-intro {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .case-intro > p:last-child {
        font-size: 32px;
    }

    .case-media-pair {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-media-pair img {
        height: 511px;
    }

    .case-text-block {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .case-text-block .section-kicker,
    .case-text-block .button-dark {
        grid-column: 1;
    }

    .case-text-block h2,
    .case-text-block p:not(.section-kicker) {
        grid-column: 2;
    }

    .studio-layout,
    .contact-layout {
        grid-template-columns: 1fr 1fr;
    }

    .experience-list article,
    .experience-list .experience-item {
        grid-template-columns: 180px 1fr 1fr;
    }

    .footer-cta,
    .footer-bottom {
        grid-template-columns: 1fr auto;
    }

    .footer-actions {
        justify-content: flex-end;
    }
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .admin-bar .menu-overlay {
        top: 46px;
    }
}

@media (min-width: 1180px) {
    .hero-logo {
        font-size: 78px;
    }

    .section-heading h2,
    .page-hero h1,
    .project-detail-hero h1 {
        font-size: 148px;
    }

    .project-card h2 {
        font-size: 18px;
    }

    .case-gallery img {
        height: 782px;
    }

    .big-contact-link {
        font-size: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
