:root {
    --ink: #0a0a0a;
    --paper: #f7f8fa;
    --white: #ffffff;
    --blue: #4568ff;
    --sky: #71d7f4;
    --line: rgba(10, 10, 10, 0.16);
    --muted: #5c626c;
    --line-green: #06c755;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", "Noto Sans JP", sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.page-shell {
    width: min(1280px, calc(100% - 96px));
    margin: 0 auto;
}

.home-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    height: 72px;
    padding: 0 40px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.home-header.is-scrolled,
.home-header.menu-active {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--line);
}

.home-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    font-size: 1.35rem;
    font-weight: 800;
    text-decoration: none;
}

.home-brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    background: var(--white);
}

.home-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.home-nav .mobile-nav-contact {
    display: none;
}

.home-nav a,
.header-contact {
    position: relative;
    font-size: 0.74rem;
    font-weight: 700;
    text-decoration: none;
}

.home-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.home-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 12px 16px;
    border: 1px solid currentColor;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 7px auto;
    background: currentColor;
    transition: transform 0.25s ease;
}

.home-hero {
    position: relative;
    height: calc(92svh - 72px);
    min-height: 620px;
    max-height: 860px;
    margin-top: 72px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    object-fit: cover;
    object-position: center 62%;
    animation: hero-scale 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.32) 54%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    align-items: end;
    width: min(1280px, calc(100% - 96px));
    height: 100%;
    margin: 0 auto;
    padding: 54px 0 48px;
}

.hero-kicker {
    grid-column: 1 / -1;
    align-self: start;
    margin: 0;
    font-size: 0.76rem;
    font-weight: 600;
}

.home-hero h1 {
    grid-column: 1;
    align-self: center;
    margin: 0;
    font-size: 7.6rem;
    font-weight: 800;
    line-height: 0.82;
}

.home-hero h1 span {
    display: block;
}

.hero-message {
    grid-column: 2;
    align-self: center;
    justify-self: end;
    margin: 0;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.55;
}

.hero-link {
    grid-column: 1;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}

.hero-link span {
    font-size: 1rem;
}

.hero-location {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 46px;
    margin: 0;
    font-size: 0.66rem;
    font-weight: 600;
    writing-mode: vertical-rl;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.section-label span,
.section-label p {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
}

.section-label span {
    color: var(--blue);
}

.belief-section {
    padding: 110px 0 0;
    background: var(--paper);
}

.belief-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.58fr);
    gap: 80px;
    align-items: end;
    padding: 80px 0 100px;
}

.belief-layout h2 {
    margin: 0;
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 1.28;
}

.belief-layout h2 span {
    color: var(--blue);
}

.belief-copy {
    padding-bottom: 10px;
}

.belief-copy p {
    margin: 0 0 20px;
    color: #30343a;
    font-size: 0.98rem;
    line-height: 2;
}

.text-link,
.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-width: 190px;
    margin-top: 18px;
    padding-bottom: 9px;
    border-bottom: 1px solid currentColor;
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
}

.text-link span,
.service-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span,
.service-link:hover span {
    transform: translateX(5px);
}

.city-band {
    position: relative;
    width: calc(100% - 64px);
    height: 520px;
    margin: 0 0 0 auto;
    overflow: hidden;
    background: var(--ink);
}

.city-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-band::after {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.14);
    content: "";
}

.city-band figcaption {
    position: absolute;
    z-index: 1;
    right: 28px;
    bottom: 22px;
    margin: 0;
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 600;
}

.business-section {
    padding: 112px 0 128px;
    color: var(--white);
    background: var(--ink);
}

.section-label-light {
    border-color: rgba(255, 255, 255, 0.26);
}

.section-label-light span {
    color: var(--sky);
}

.business-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.55fr);
    gap: 80px;
    align-items: end;
    padding: 72px 0 110px;
}

.business-intro h2 {
    margin: 0;
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.34;
}

.business-intro > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 2;
}

.service-list {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.service-row {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    min-height: 540px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.service-row-reverse .service-copy {
    order: 2;
    padding-right: 0;
    padding-left: 68px;
}

.service-row-reverse .service-media {
    order: 1;
}

.service-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 62px 68px 62px 0;
}

.service-index {
    position: absolute;
    top: 42px;
    right: 38px;
    margin: 0;
    color: rgba(255, 255, 255, 0.13);
    font-size: 6.5rem;
    font-weight: 800;
    line-height: 1;
}

.service-row-reverse .service-index {
    right: 0;
}

.service-en {
    margin: 0 0 18px;
    color: var(--sky);
    font-size: 0.7rem;
    font-weight: 700;
}

.service-copy h3 {
    margin: 0 0 28px;
    font-size: 2.25rem;
    font-weight: 700;
}

.service-copy > p:not(.service-index):not(.service-en) {
    max-width: 530px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 2;
}

.service-link {
    color: var(--white);
}

.service-media {
    position: relative;
    min-height: 540px;
    overflow: hidden;
}

.service-media::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    content: "";
    pointer-events: none;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.02);
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
}

.service-row:hover .service-media img {
    filter: saturate(1) contrast(1.02);
    transform: scale(1.035);
}

.service-media-portrait img {
    object-position: center 26%;
}

.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    align-items: flex-end;
}

.line-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 44px;
    margin-top: 18px;
    padding: 9px 18px;
    color: var(--ink);
    background: var(--line-green);
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
}

.works-section-home {
    padding: 112px 0 130px;
    background: var(--paper);
}

.works-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    padding: 72px 0 80px;
}

.works-heading h2 {
    margin: 0;
    font-size: 3.7rem;
    font-weight: 700;
    line-height: 1.42;
}

.featured-works {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px 28px;
}

.work-item {
    display: block;
    text-decoration: none;
}

.work-item-wide {
    grid-column: 1 / -1;
}

.work-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dadde3;
}

.work-item-wide .work-media {
    aspect-ratio: 2.12 / 1;
}

.work-media::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    content: "";
}

.work-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-item:hover .work-media img {
    transform: scale(1.025);
}

.work-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.work-meta p,
.work-meta span {
    margin: 0;
}

.work-meta p {
    font-size: 1rem;
    font-weight: 700;
}

.work-meta span {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 600;
}

.career-section {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.career-section > img,
.career-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.career-section > img {
    object-fit: cover;
    object-position: center 44%;
}

.career-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.38) 58%, rgba(0, 0, 0, 0.12) 100%);
}

.career-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 680px;
}

.career-label,
.contact-label {
    margin: 0 0 28px;
    color: var(--sky);
    font-size: 0.74rem;
    font-weight: 700;
}

.career-content h2 {
    margin: 0;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.35;
}

.career-content > p:not(.career-label) {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
}

.outline-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-width: 220px;
    margin-top: 42px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.outline-link:hover {
    color: var(--ink);
    background: var(--white);
}

.contact-section-home {
    padding: 110px 0;
    color: var(--white);
    background: var(--blue);
}

.contact-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.contact-label {
    color: var(--white);
}

.contact-layout h2 {
    margin: 0;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.42;
}

.contact-circle {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 50%;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.contact-circle:hover {
    color: var(--blue);
    background: var(--white);
    transform: rotate(-4deg);
}

.contact-circle span {
    font-size: 0.78rem;
    font-weight: 700;
}

.contact-circle strong {
    margin-left: 12px;
    font-size: 1.2rem;
}

.home-footer {
    padding: 76px 0 30px;
    color: var(--white);
    background: var(--ink);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 70px;
    align-items: start;
    padding-bottom: 70px;
}

.footer-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    background: var(--white);
}

.footer-tagline {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
}

.footer-links a,
.footer-bottom a {
    width: max-content;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
}

.footer-address p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.66rem;
}

.footer-bottom div {
    display: flex;
    gap: 24px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes hero-scale {
    from {
        opacity: 0.6;
        transform: scale(1.04);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1100px) {
    .page-shell,
    .hero-inner {
        width: min(100% - 64px, 1280px);
    }

    .home-header {
        padding: 0 28px;
    }

    .home-nav {
        gap: 20px;
    }

    .home-hero h1 {
        font-size: 6.2rem;
    }

    .hero-message {
        font-size: 1.75rem;
    }

    .belief-layout h2,
    .business-intro h2 {
        font-size: 3.6rem;
    }

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

    .service-copy,
    .service-row-reverse .service-copy {
        padding-right: 44px;
        padding-left: 44px;
    }

    .works-heading h2 {
        font-size: 3rem;
    }
}

@media (max-width: 820px) {
    .page-shell,
    .hero-inner {
        width: calc(100% - 40px);
    }

    .home-header {
        grid-template-columns: 1fr auto;
        height: 64px;
        padding: 0 20px;
    }

    .home-brand {
        font-size: 1.1rem;
    }

    .home-brand img {
        width: 30px;
        height: 30px;
    }

    .header-contact {
        display: none;
    }

    .menu-toggle {
        z-index: 2;
        display: block;
    }

    .menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(4.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-4.5px) rotate(-45deg);
    }

    .home-nav {
        position: fixed;
        z-index: 1;
        inset: 64px 0 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 30px 30px 60px;
        color: var(--ink);
        background: var(--white);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .home-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .home-nav a {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
        font-size: 1.75rem;
    }

    .home-nav .mobile-nav-contact {
        display: block;
    }

    .home-nav a::after {
        display: none;
    }

    .home-hero {
        height: calc(84svh - 64px);
        min-height: 600px;
        margin-top: 64px;
    }

    .hero-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        padding: 34px 0;
    }

    .hero-kicker {
        align-self: flex-start;
    }

    .home-hero h1 {
        align-self: flex-start;
        margin-top: auto;
        font-size: 4.8rem;
    }

    .hero-message {
        align-self: flex-start;
        justify-self: auto;
        margin-top: 30px;
        font-size: 1.55rem;
    }

    .hero-link {
        margin-top: auto;
    }

    .hero-location {
        right: 10px;
        bottom: 30px;
    }

    .belief-section,
    .business-section,
    .works-section-home {
        padding-top: 80px;
    }

    .belief-layout,
    .business-intro {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 54px 0 72px;
    }

    .belief-layout h2,
    .business-intro h2 {
        font-size: 3rem;
    }

    .belief-copy {
        max-width: 560px;
    }

    .city-band {
        width: calc(100% - 20px);
        height: 390px;
    }

    .service-row,
    .service-row-reverse {
        grid-template-columns: 1fr;
    }

    .service-row .service-copy,
    .service-row-reverse .service-copy {
        order: 1;
        min-height: 430px;
        padding: 70px 24px 46px;
    }

    .service-row .service-media,
    .service-row-reverse .service-media {
        order: 2;
        min-height: 380px;
    }

    .service-index,
    .service-row-reverse .service-index {
        top: 30px;
        right: 20px;
        font-size: 5.3rem;
    }

    .service-copy h3 {
        font-size: 1.85rem;
    }

    .works-heading {
        display: block;
        padding: 54px 0 60px;
    }

    .works-heading h2 {
        font-size: 2.6rem;
    }

    .works-heading .text-link {
        margin-top: 32px;
    }

    .featured-works {
        gap: 48px 20px;
    }

    .career-content h2,
    .contact-layout h2 {
        font-size: 3.2rem;
    }

    .contact-layout {
        gap: 40px;
    }

    .contact-circle {
        width: 190px;
        height: 190px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-address {
        grid-column: 2;
    }
}

@media (max-width: 560px) {
    .page-shell,
    .hero-inner {
        width: calc(100% - 32px);
    }

    .home-hero {
        min-height: 570px;
    }

    .hero-media {
        object-position: 52% center;
    }

    .home-hero h1 {
        font-size: 4rem;
    }

    .hero-message {
        font-size: 1.35rem;
    }

    .hero-location {
        display: none;
    }

    .belief-layout h2,
    .business-intro h2 {
        font-size: 2.35rem;
    }

    .belief-copy p,
    .business-intro > p,
    .service-copy > p:not(.service-index):not(.service-en) {
        font-size: 0.9rem;
    }

    .city-band {
        height: 300px;
    }

    .city-band figcaption {
        right: 14px;
        bottom: 12px;
    }

    .business-section {
        padding-bottom: 90px;
    }

    .service-row .service-copy,
    .service-row-reverse .service-copy {
        min-height: 410px;
        padding: 66px 18px 38px;
    }

    .service-row .service-media,
    .service-row-reverse .service-media {
        min-height: 280px;
    }

    .service-copy h3 {
        margin-bottom: 20px;
        font-size: 1.55rem;
    }

    .service-index,
    .service-row-reverse .service-index {
        right: 12px;
        font-size: 4.5rem;
    }

    .service-actions {
        display: block;
    }

    .line-link {
        width: 100%;
        max-width: 300px;
        min-height: 48px;
    }

    .works-section-home {
        padding-bottom: 90px;
    }

    .works-heading h2 {
        font-size: 2.1rem;
    }

    .featured-works {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .work-item-wide {
        grid-column: auto;
    }

    .work-item-wide .work-media,
    .work-media {
        aspect-ratio: 4 / 3;
    }

    .work-meta {
        display: block;
    }

    .work-meta span {
        display: block;
        margin-top: 8px;
    }

    .career-section,
    .career-content {
        min-height: 610px;
    }

    .career-section > img {
        object-position: 58% center;
    }

    .career-content h2,
    .contact-layout h2 {
        font-size: 2.45rem;
    }

    .contact-layout h2 {
        font-size: 2rem;
        line-height: 1.5;
    }

    .career-content > p:not(.career-label) {
        max-width: 290px;
        line-height: 1.8;
    }

    .contact-section-home {
        padding: 82px 0;
    }

    .contact-layout {
        display: block;
    }

    .contact-circle {
        width: 160px;
        height: 160px;
        margin: 48px 0 0 auto;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 46px;
        padding-bottom: 52px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-address {
        grid-column: auto;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Freelance-first site system */
.home-nav .active::after {
    transform: scaleX(1);
}

.subpage-site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--line);
}

.subpage-main {
    padding-top: 72px;
}

#freelance,
#it-solution,
#agency,
#web-creative,
#contact-form {
    scroll-margin-top: 84px;
}

.freelance-home-hero .hero-media {
    object-position: center 45%;
    filter: saturate(0.72) contrast(1.06);
}

.freelance-home-hero .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 54%, rgba(0, 0, 0, 0.2) 100%);
}

.freelance-hero-title {
    font-size: 6.3rem !important;
    line-height: 0.88 !important;
}

.freelance-hero-title small {
    display: block;
    margin-top: 28px;
    font-size: 0.9rem;
    font-weight: 600;
}

.purpose-message {
    max-width: 560px;
    font-size: 2.25rem;
}

.hero-line-link {
    min-width: 210px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.82);
}

.needs-band {
    color: var(--white);
    background: var(--blue);
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.needs-grid p {
    display: flex;
    gap: 18px;
    align-items: center;
    min-height: 112px;
    margin: 0;
    padding: 24px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.34);
    font-size: 1rem;
    font-weight: 700;
}

.needs-grid p:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.needs-grid span {
    font-size: 0.68rem;
    opacity: 0.72;
}

.freelance-focus {
    padding: 110px 0 120px;
    background: var(--paper);
}

.freelance-focus-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 84px;
    align-items: center;
    padding: 84px 0 92px;
}

.freelance-focus-copy h2 {
    margin: 0;
    font-size: 4.5rem;
    line-height: 1.28;
}

.freelance-focus-copy h2 span {
    color: var(--blue);
}

.freelance-focus-copy > p {
    max-width: 560px;
    margin: 34px 0 0;
    color: #30343a;
    line-height: 2.1;
}

.freelance-focus-media {
    position: relative;
    height: 690px;
    margin: 0;
    overflow: hidden;
    background: #dfe2e7;
}

.freelance-focus-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
}

.freelance-focus-media figcaption {
    position: absolute;
    right: 18px;
    bottom: 16px;
    padding: 8px 10px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.64);
    font-size: 0.64rem;
    font-weight: 600;
}

.focus-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    align-items: center;
    margin-top: 38px;
}

.solid-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 52px;
    padding: 14px 20px;
    color: var(--white);
    background: var(--ink);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 700;
    text-decoration: none;
}

.line-solid-link {
    color: #06170c;
    background: var(--line-green);
}

.support-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.support-points article {
    min-height: 240px;
    padding: 34px 34px 42px;
    border-right: 1px solid var(--line);
}

.support-points article:first-child {
    border-left: 1px solid var(--line);
}

.support-points article > span,
.support-points article > p {
    color: var(--muted);
    font-size: 0.75rem;
}

.support-points h3 {
    margin: 52px 0 16px;
    font-size: 1.6rem;
}

.support-points p {
    margin: 0;
    line-height: 1.8;
}

.other-business-section {
    padding-bottom: 120px;
}

.compact-business-intro {
    padding-bottom: 76px;
}

.other-business-list {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.other-business-list a {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr 1.2fr auto;
    gap: 28px;
    align-items: center;
    min-height: 150px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    text-decoration: none;
}

.other-business-list span,
.other-business-list em {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    font-style: normal;
}

.other-business-list strong {
    font-size: 1.9rem;
}

.other-business-list b {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.other-business-list a:hover b {
    transform: translateX(6px);
}

.purpose-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.55fr);
}

.purpose-layout h2 {
    font-size: 3.9rem;
}

/* Shared page heroes */
.plain-page-hero {
    min-height: 690px;
    padding: 112px 0 86px;
    background: var(--paper);
}

.plain-page-hero > .page-shell {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 492px;
}

.plain-page-hero > .page-shell > p,
.subpage-hero-content > p {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
}

.plain-page-hero h1 {
    margin: 70px 0;
    font-size: 5.4rem;
    line-height: 1.25;
}

.plain-page-hero h1 span {
    color: var(--blue);
}

.plain-page-hero > .page-shell > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.plain-page-hero > .page-shell > div span {
    font-size: 0.68rem;
    font-weight: 700;
}

.plain-page-hero > .page-shell > div p {
    justify-self: end;
    margin: 0;
    color: var(--muted);
}

.subpage-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.subpage-hero > img,
.subpage-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.subpage-hero > img {
    object-fit: cover;
}

.subpage-hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
}

.subpage-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    align-items: end;
    min-height: 720px;
    padding: 60px 0 58px;
}

.subpage-hero-content > p {
    grid-column: 1 / -1;
    align-self: start;
}

.subpage-hero-content h1 {
    margin: 0;
    font-size: 6.8rem;
    line-height: 0.88;
}

.subpage-hero-content > div {
    justify-self: end;
}

.subpage-hero-content strong,
.subpage-hero-content span {
    display: block;
}

.subpage-hero-content strong {
    font-size: 1.7rem;
    line-height: 1.55;
}

.subpage-hero-content span {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
}

.freelance-service-hero > img {
    object-position: center 30%;
}

.careers-page-hero > img {
    object-position: center 44%;
}

.editorial-lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.62fr);
    gap: 90px;
    align-items: start;
    padding: 80px 0 96px;
}

.editorial-lead-grid h2 {
    margin: 0;
    font-size: 4.2rem;
    line-height: 1.35;
}

.editorial-lead-grid > div p {
    margin: 0 0 22px;
    color: #343941;
    line-height: 2.05;
}

/* Service page */
.service-lead-section,
.works-intro-section,
.careers-lead-section {
    padding: 110px 0 120px;
    background: var(--paper);
}

.challenge-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.challenge-strip p {
    min-height: 148px;
    margin: 0;
    padding: 30px;
    border-right: 1px solid var(--line);
    font-weight: 700;
    line-height: 1.8;
}

.challenge-strip p:first-child {
    border-left: 1px solid var(--line);
}

.challenge-strip span {
    display: block;
    margin-bottom: 30px;
    color: var(--blue);
    font-size: 0.68rem;
}

.support-detail-section,
.career-growth-section {
    padding: 112px 0 126px;
    color: var(--white);
    background: var(--ink);
}

.support-detail-heading,
.career-growth-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.55fr;
    gap: 90px;
    align-items: end;
    padding: 72px 0 80px;
}

.support-detail-heading h2,
.career-growth-heading h2 {
    margin: 0;
    font-size: 4.3rem;
    line-height: 1.35;
}

.support-detail-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    line-height: 2;
}

.support-detail-list {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.support-detail-list article {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    min-height: 210px;
    padding: 38px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.support-detail-list article > span {
    color: var(--sky);
    font-size: 0.72rem;
}

.support-detail-list article div {
    display: grid;
    grid-template-columns: 0.48fr 1fr 1fr;
    gap: 42px;
    align-items: start;
}

.support-detail-list p,
.support-detail-list h3 {
    margin: 0;
}

.support-detail-list article div > p:first-child {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.68rem;
    font-weight: 700;
}

.support-detail-list h3 {
    font-size: 1.6rem;
    line-height: 1.5;
}

.support-detail-list article div > p:last-child {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
}

.service-audience-section {
    padding: 120px 0;
    background: var(--white);
}

.service-audience-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 88px;
    align-items: center;
}

.service-audience-grid figure {
    height: 690px;
    margin: 0;
    overflow: hidden;
}

.service-audience-grid figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-audience-grid h2 {
    margin: 60px 0 36px;
    font-size: 4.1rem;
}

.service-audience-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-audience-grid li {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    line-height: 1.7;
}

.service-audience-grid .solid-link {
    margin-top: 36px;
}

.other-services-page {
    padding: 110px 0 120px;
    background: var(--paper);
}

.other-service-row {
    display: grid;
    grid-template-columns: 90px 1fr 1fr;
    gap: 50px;
    min-height: 220px;
    padding: 48px 0;
    border-bottom: 1px solid var(--line);
}

.other-service-row:first-of-type {
    margin-top: 70px;
    border-top: 1px solid var(--line);
}

.other-service-row > span,
.other-service-row > div > p {
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 700;
}

.other-service-row h2 {
    margin: 22px 0 0;
    font-size: 2rem;
}

.other-service-row > p {
    margin: 0;
    color: var(--muted);
    line-height: 2;
}

/* About page */
.about-page-hero {
    color: var(--white);
    background: var(--ink);
}

.about-page-hero h1 span {
    color: var(--sky);
}

.about-page-hero > .page-shell > div {
    border-color: rgba(255, 255, 255, 0.25);
}

.about-page-hero > .page-shell > div p {
    color: rgba(255, 255, 255, 0.65);
}

.about-statement-section {
    padding: 120px 0;
    background: var(--paper);
}

.about-statement-grid {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: 80px;
}

.statement-index {
    margin: 0;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
}

.about-statement-grid h2 {
    margin: 0 0 44px;
    font-size: 4.3rem;
    line-height: 1.35;
}

.about-statement-grid div p {
    max-width: 760px;
    margin: 0 0 22px;
    color: #333840;
    line-height: 2.1;
}

.ceo-redesign-section {
    padding: 112px 0 130px;
    color: var(--white);
    background: var(--ink);
}

.ceo-redesign-grid {
    display: grid;
    grid-template-columns: minmax(380px, 0.9fr) 1.1fr;
    gap: 90px;
    padding-top: 80px;
}

.ceo-redesign-grid figure {
    margin: 0;
}

.ceo-redesign-grid figure img {
    width: 100%;
    max-height: 740px;
    object-fit: cover;
    object-position: center top;
}

.ceo-redesign-grid figcaption {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.ceo-redesign-grid figcaption span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
}

.ceo-redesign-grid figcaption strong {
    font-size: 1.4rem;
}

.ceo-redesign-grid h2 {
    margin: 0 0 50px;
    font-size: 4rem;
    line-height: 1.35;
}

.ceo-redesign-grid > div > p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 2.05;
}

.ceo-redesign-grid .ceo-sign-redesign {
    margin-top: 52px;
    color: var(--white);
    text-align: right;
}

.ceo-profile-section {
    padding: 112px 0 124px;
    background: var(--white);
}

.ceo-profile-grid {
    display: grid;
    grid-template-columns: minmax(430px, 0.8fr) minmax(0, 1.2fr);
    gap: 72px;
    padding-top: 76px;
}

.ceo-profile-name {
    margin: 0 0 34px;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
}

.ceo-profile-grid h2 {
    margin: 0;
    font-size: 2.15rem;
    line-height: 1.45;
}

.ceo-profile-copy > p {
    margin: 0 0 24px;
    color: #343941;
    line-height: 2.05;
}

.ceo-profile-highlights,
.home-ceo-highlights {
    display: grid;
    margin: 46px 0 0;
    padding: 0;
}

.ceo-profile-highlights {
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.ceo-profile-highlights div {
    min-height: 150px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.ceo-profile-highlights dt,
.home-ceo-highlights dt {
    color: var(--blue);
    font-weight: 800;
}

.ceo-profile-highlights dt {
    font-size: 1.8rem;
}

.ceo-profile-highlights dd,
.home-ceo-highlights dd {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.65;
}

.values-redesign-section {
    padding: 112px 0 124px;
    background: var(--paper);
}

.values-redesign-heading {
    padding: 72px 0 76px;
}

.values-redesign-heading h2 {
    margin: 0;
    font-size: 4.2rem;
    line-height: 1.35;
}

.values-redesign-list {
    border-top: 1px solid var(--line);
}

.values-redesign-list article {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 130px;
    border-bottom: 1px solid var(--line);
}

.values-redesign-list article span {
    color: var(--blue);
    font-size: 0.7rem;
}

.values-redesign-list h3 {
    font-size: 1.55rem;
}

.values-redesign-list p {
    color: var(--muted);
    line-height: 1.8;
}

.company-redesign-section {
    padding: 112px 0 126px;
    color: var(--white);
    background: var(--ink);
}

.company-redesign-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 90px;
}

.company-redesign-grid h2 {
    margin: 62px 0 0;
    font-size: 4rem;
}

.company-redesign-grid dl {
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.company-redesign-grid dl div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    padding: 23px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.company-redesign-grid dt {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.75rem;
}

.company-redesign-grid dd {
    margin: 0;
    line-height: 1.8;
}

/* Works */
.works-intro-section {
    padding-bottom: 70px;
}

.works-archive-section {
    padding: 60px 0 130px;
    background: var(--paper);
}

.works-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 62px 24px;
    padding-top: 34px;
}

.works-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 70px;
}

.works-filter-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.works-filter-button span {
    color: inherit;
    font-size: 0.65rem;
    font-variant-numeric: tabular-nums;
}

.works-filter-button:hover,
.works-filter-button.is-active {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.works-result-count {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
}

.archive-work {
    display: block;
    text-decoration: none;
}

.archive-work > div {
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
    overflow: hidden;
    background: #dfe2e7;
}

.archive-work img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.archive-work:hover img {
    transform: scale(1.025);
}

.archive-work > span,
.archive-work > p {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 600;
}

.archive-work h2 {
    margin: 11px 0 8px;
    font-size: 1.45rem;
}

.archive-work p {
    margin: 0;
}

.archive-work[hidden] {
    display: none;
}

.works-contact-section {
    background: var(--ink);
}

/* Careers */
.career-growth-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.career-growth-list article {
    min-height: 270px;
    padding: 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.career-growth-list article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.career-growth-list span {
    color: var(--sky);
    font-size: 0.7rem;
}

.career-growth-list h3 {
    margin: 64px 0 18px;
    font-size: 1.5rem;
}

.career-growth-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.85;
}

.positions-section {
    padding: 112px 0 124px;
    background: var(--paper);
}

.position-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 50px;
    align-items: center;
    min-height: 220px;
    padding: 44px 0;
    border-bottom: 1px solid var(--line);
}

.position-row:first-of-type {
    margin-top: 72px;
    border-top: 1px solid var(--line);
}

.position-row span {
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 700;
}

.position-row h2 {
    margin: 22px 0 0;
    font-size: 2rem;
}

.position-row > p {
    color: var(--muted);
    line-height: 1.9;
}

.position-row > a {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 1.4rem;
    text-decoration: none;
}

.muted-position {
    opacity: 0.76;
}

.careers-entry-section {
    padding: 116px 0;
    color: var(--white);
    background: var(--blue);
}

.careers-entry-layout {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.careers-entry-layout p,
.careers-entry-layout h2,
.careers-entry-layout span {
    margin: 0;
}

.careers-entry-layout p {
    font-size: 0.72rem;
    font-weight: 700;
}

.careers-entry-layout h2 {
    margin: 42px 0 20px;
    font-size: 4.4rem;
}

.careers-entry-layout .solid-link {
    color: var(--ink);
    background: var(--white);
}

/* Contact */
.contact-page-hero {
    padding-bottom: 66px;
}

.contact-choice-section {
    background: var(--paper);
}

.contact-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-choice-grid > div {
    min-height: 430px;
    padding: 58px 56px;
}

.contact-choice-grid > div:first-child {
    border-right: 1px solid var(--line);
}

.contact-choice-grid > div > p {
    margin: 0;
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 700;
}

.contact-choice-grid h2 {
    margin: 72px 0 22px;
    font-size: 2rem;
}

.contact-choice-grid > div > span {
    display: block;
    color: var(--muted);
    line-height: 1.9;
}

.contact-choice-grid .solid-link,
.contact-choice-grid .text-link {
    margin-top: 38px;
}

.redesign-form-section {
    padding: 130px 0;
    background: var(--white);
}

.redesign-form-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 100px;
}

.redesign-form-grid > div > h2 {
    margin: 62px 0 20px;
    font-size: 3.8rem;
}

.redesign-form-grid > div > p {
    color: var(--muted);
    line-height: 1.9;
}

.redesign-contact-form {
    border-top: 1px solid var(--line);
}

.redesign-contact-form label {
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.redesign-contact-form label > span {
    display: block;
    margin-bottom: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.redesign-contact-form input,
.redesign-contact-form select,
.redesign-contact-form textarea {
    width: 100%;
    padding: 13px 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    line-height: 1.7;
}

.redesign-contact-form input:focus,
.redesign-contact-form select:focus,
.redesign-contact-form textarea:focus {
    box-shadow: 0 2px 0 var(--blue);
}

.redesign-contact-form button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 64px;
    margin-top: 34px;
    padding: 18px 24px;
    border: 0;
    color: var(--white);
    background: var(--ink);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

/* Journal */
.journal-feature-section {
    padding: 112px 0 122px;
    background: var(--paper);
}

.journal-feature {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 68px;
    align-items: center;
    padding-top: 76px;
    text-decoration: none;
}

.journal-feature figure {
    height: 620px;
    margin: 0;
    overflow: hidden;
}

.journal-feature figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-feature div > span,
.journal-grid span {
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 700;
}

.journal-feature h2 {
    margin: 44px 0 30px;
    font-size: 3.2rem;
    line-height: 1.45;
}

.journal-feature div > p {
    color: var(--muted);
    line-height: 1.9;
}

.journal-feature b {
    display: inline-block;
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ink);
    font-size: 0.72rem;
}

.journal-archive-section {
    padding: 112px 0 130px;
    background: var(--white);
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 24px;
    padding-top: 76px;
}

.journal-grid a {
    position: relative;
    display: block;
    text-decoration: none;
}

.journal-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 22px;
    object-fit: cover;
    filter: saturate(0.8);
}

.journal-grid h2 {
    min-height: 4.8em;
    margin: 16px 38px 0 0;
    font-size: 1.25rem;
    line-height: 1.65;
}

.journal-grid p {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
}

/* Balanced corporate presentation */
.home-ceo-section {
    padding: 112px 0 126px;
    background: var(--white);
}

.home-ceo-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    gap: 92px;
    align-items: center;
    padding-top: 78px;
}

.home-ceo-grid figure {
    margin: 0;
}

.home-ceo-grid figure img {
    width: 100%;
    max-height: 680px;
    object-fit: cover;
    object-position: center top;
}

.home-ceo-grid figcaption {
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.76rem;
}

.home-ceo-kicker {
    margin: 0 0 34px;
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 700;
}

.home-ceo-grid h2 {
    margin: 0 0 34px;
    font-size: 4rem;
    line-height: 1.4;
}

.home-ceo-grid > div > p:not(.home-ceo-kicker) {
    max-width: 650px;
    margin: 0;
    color: #343941;
    line-height: 2.1;
}

.home-ceo-highlights {
    grid-template-columns: repeat(4, 1fr);
    max-width: 650px;
    margin-bottom: 36px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.home-ceo-highlights div {
    min-height: 104px;
    padding: 22px 18px;
    border-right: 1px solid var(--line);
}

.home-ceo-highlights div:first-child {
    border-left: 1px solid var(--line);
}

.home-ceo-highlights dt {
    font-size: 1.25rem;
}

.business-page-hero > img {
    object-position: center 52%;
}

.balanced-service-section {
    padding: 112px 0 126px;
    color: var(--white);
    background: var(--ink);
}

.balanced-service-list {
    padding-top: 78px;
}

.balanced-service-item {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 650px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.balanced-service-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.balanced-service-item.reverse .balanced-service-copy {
    order: 2;
    padding-right: 0;
    padding-left: 70px;
}

.balanced-service-item.reverse figure {
    order: 1;
}

.balanced-service-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 68px 70px 68px 0;
}

.balanced-service-copy > span {
    color: var(--sky);
    font-size: 0.7rem;
    font-weight: 700;
}

.balanced-service-copy h2 {
    margin: 32px 0 24px;
    font-size: 2.5rem;
}

.balanced-service-copy .balanced-service-lead {
    color: var(--white);
    font-size: 1.12rem;
    font-weight: 700;
}

.balanced-service-copy > p:not(.balanced-service-lead) {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 2;
}

.balanced-service-copy ul {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.balanced-service-copy li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
}

.balanced-service-copy .solid-link,
.balanced-service-copy .text-link {
    width: max-content;
    margin-top: 34px;
}

.balanced-service-copy .text-link {
    color: var(--white);
}

.balanced-service-item figure {
    min-height: 650px;
    margin: 0;
    overflow: hidden;
}

.balanced-service-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8);
}

.name-origin-section {
    padding: 112px 0 122px;
    background: var(--white);
}

.name-origin-grid {
    display: grid;
    grid-template-columns: 0.58fr 1.42fr;
    gap: 90px;
    align-items: start;
}

.name-origin-grid .section-label {
    width: 100%;
}

.name-origin-en {
    margin: 0 0 42px;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
}

.name-origin-grid h2 {
    margin: 0 0 38px;
    font-size: 4.2rem;
    line-height: 1.4;
}

.name-origin-grid > div > p:last-child {
    max-width: 760px;
    margin: 0;
    color: #343941;
    line-height: 2.1;
}

/* Legacy pages receive the same shell without rewriting article content. */
#loader,
#particles {
    display: none !important;
}

.header {
    position: sticky !important;
    z-index: 100 !important;
    top: 0 !important;
    height: 72px !important;
    padding: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: none !important;
}

.header .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 40px !important;
}

.header-content {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    height: 72px !important;
}

.header .logo-link,
.header .footer-logo-wrapper {
    text-decoration: none !important;
}

.header .corp-logo {
    width: 36px !important;
    height: 36px !important;
}

.header .logo-text {
    color: var(--ink) !important;
    font-family: "Inter", "Noto Sans JP", sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
}

.header .nav {
    justify-self: center !important;
    gap: 28px !important;
}

.header .nav-link {
    color: var(--ink) !important;
    font-family: "Inter", "Noto Sans JP", sans-serif !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
}

.header .nav-sub {
    display: none !important;
}

.header .contact-btn {
    padding: 12px 16px !important;
    border: 1px solid var(--ink) !important;
    border-radius: 0 !important;
    color: var(--ink) !important;
    background: transparent !important;
    font-size: 0.72rem !important;
}

.page-header {
    min-height: 360px !important;
    height: auto !important;
    margin-top: 0 !important;
    color: var(--white) !important;
    background: var(--ink) !important;
}

.page-header::after {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    content: "";
}

.page-header-content {
    z-index: 2 !important;
}

.page-title {
    font-family: "Inter", "Noto Sans JP", sans-serif !important;
    font-size: 4.6rem !important;
    letter-spacing: 0 !important;
}

.footer {
    padding: 76px 0 30px !important;
    color: var(--white) !important;
    background: var(--ink) !important;
}

.footer .container {
    width: min(1280px, calc(100% - 96px)) !important;
    max-width: none !important;
}

.footer-nav a,
.footer-right p,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.62) !important;
}

@media (max-width: 900px) {
    .subpage-hero-content h1 {
        font-size: 5rem;
    }

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

    .editorial-lead-grid,
    .support-detail-heading,
    .career-growth-heading,
    .company-redesign-grid,
    .redesign-form-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .freelance-focus-grid,
    .ceo-redesign-grid,
    .service-audience-grid,
    .journal-feature {
        grid-template-columns: 1fr;
    }

    .support-detail-list article div {
        grid-template-columns: 0.5fr 1fr;
    }

    .support-detail-list article div > p:last-child {
        grid-column: 2;
    }

    .journal-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .subpage-main {
        padding-top: 64px;
    }

    .subpage-site-header {
        height: 64px;
    }

    .freelance-hero-title {
        font-size: 3.7rem !important;
    }

    .purpose-message {
        font-size: 1.45rem;
    }

    .needs-grid,
    .support-points,
    .challenge-strip,
    .career-growth-list {
        grid-template-columns: 1fr;
    }

    .needs-grid p,
    .support-points article,
    .challenge-strip p,
    .career-growth-list article {
        border-right: 1px solid var(--line);
        border-left: 1px solid var(--line);
    }

    .needs-grid p {
        min-height: 78px;
        border-color: rgba(255, 255, 255, 0.34);
        border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    }

    .freelance-focus-grid {
        gap: 52px;
    }

    .freelance-focus-copy h2,
    .editorial-lead-grid h2,
    .support-detail-heading h2,
    .career-growth-heading h2,
    .about-statement-grid h2,
    .values-redesign-heading h2 {
        font-size: 3.1rem;
    }

    .freelance-focus-media {
        height: 560px;
    }

    .other-business-list a {
        grid-template-columns: 1fr auto;
        gap: 16px 24px;
        padding: 30px 0;
    }

    .other-business-list strong,
    .other-business-list em {
        grid-column: 1;
    }

    .other-business-list b {
        grid-column: 2;
        grid-row: 1 / 4;
    }

    .plain-page-hero {
        min-height: 590px;
        padding-top: 84px;
    }

    .plain-page-hero h1 {
        margin: 72px 0;
        font-size: 3.9rem;
    }

    .plain-page-hero > .page-shell > div {
        grid-template-columns: 1fr;
    }

    .plain-page-hero > .page-shell > div p {
        justify-self: start;
    }

    .subpage-hero,
    .subpage-hero-content {
        min-height: 640px;
    }

    .subpage-hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .subpage-hero-content h1 {
        font-size: 4.2rem;
    }

    .subpage-hero-content > div {
        justify-self: auto;
    }

    .about-statement-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .support-detail-list article,
    .other-service-row,
    .values-redesign-list article,
    .position-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-detail-list article div {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .support-detail-list article div > p:last-child {
        grid-column: auto;
    }

    .service-audience-grid figure {
        height: 520px;
    }

    .company-redesign-grid dl div {
        grid-template-columns: 120px 1fr;
    }

    .works-archive-grid,
    .contact-choice-grid {
        grid-template-columns: 1fr;
    }

    .archive-work-wide {
        grid-column: auto;
    }

    .archive-work-wide > div {
        aspect-ratio: 4 / 3;
    }

    .contact-choice-grid > div:first-child {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .careers-entry-layout {
        display: block;
    }

    .careers-entry-layout .solid-link {
        margin-top: 44px;
    }

    .header .nav.mobile-open {
        top: 64px !important;
    }
}

@media (max-width: 560px) {
    .freelance-home-hero .hero-media {
        object-position: 58% center;
    }

    .freelance-hero-title {
        font-size: 3.25rem !important;
    }

    .freelance-hero-title small {
        margin-top: 18px;
    }

    .purpose-message {
        font-size: 1.2rem;
    }

    .hero-line-link {
        min-width: 190px;
    }

    .freelance-focus,
    .service-lead-section,
    .works-intro-section,
    .careers-lead-section,
    .support-detail-section,
    .service-audience-section,
    .other-services-page,
    .about-statement-section,
    .ceo-redesign-section,
    .values-redesign-section,
    .company-redesign-section,
    .works-archive-section,
    .career-growth-section,
    .positions-section,
    .redesign-form-section,
    .journal-feature-section,
    .journal-archive-section {
        padding-top: 82px;
        padding-bottom: 90px;
    }

    .freelance-focus-grid,
    .editorial-lead-grid {
        padding-top: 54px;
        padding-bottom: 62px;
    }

    .freelance-focus-copy h2,
    .editorial-lead-grid h2,
    .support-detail-heading h2,
    .career-growth-heading h2,
    .about-statement-grid h2,
    .values-redesign-heading h2 {
        font-size: 2.35rem;
    }

    .freelance-focus-media {
        height: 470px;
    }

    .support-points h3 {
        margin-top: 34px;
    }

    .other-business-list strong {
        font-size: 1.45rem;
    }

    .plain-page-hero {
        min-height: 520px;
        padding: 70px 0 60px;
    }

    .plain-page-hero > .page-shell {
        min-height: 390px;
    }

    .plain-page-hero h1 {
        margin: 58px 0;
        font-size: 2.6rem;
        line-height: 1.45;
    }

    .about-page-hero h1 {
        font-size: 2rem;
        white-space: nowrap;
    }

    .subpage-hero,
    .subpage-hero-content {
        min-height: 580px;
    }

    .subpage-hero-content h1 {
        font-size: 3.3rem;
    }

    .subpage-hero-content strong {
        font-size: 1.25rem;
    }

    .challenge-strip p {
        min-height: 120px;
    }

    .service-audience-grid figure {
        height: 430px;
    }

    .service-audience-grid h2,
    .ceo-redesign-grid h2,
    .company-redesign-grid h2,
    .redesign-form-grid > div > h2 {
        font-size: 2.5rem;
    }

    .ceo-redesign-grid {
        grid-template-columns: 1fr;
    }

    .values-redesign-list article {
        min-height: 160px;
        padding: 28px 0;
    }

    .values-redesign-list h3,
    .values-redesign-list p {
        margin: 0;
    }

    .company-redesign-grid dl div {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .works-archive-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .career-growth-list article {
        min-height: 220px;
    }

    .position-row > a {
        width: 58px;
        height: 58px;
    }

    .careers-entry-layout h2 {
        font-size: 2.7rem;
    }

    .contact-choice-grid > div {
        min-height: 390px;
        padding: 44px 26px;
    }

    .contact-choice-grid h2 {
        margin-top: 56px;
        font-size: 1.6rem;
    }

    .journal-feature figure {
        height: 430px;
    }

    .journal-feature h2 {
        font-size: 2.2rem;
    }

    .journal-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .journal-grid h2 {
        min-height: 0;
    }

    .header .container {
        padding: 0 18px !important;
    }

    .header .logo-text {
        font-size: 1.1rem !important;
    }

    .page-title {
        font-size: 3rem !important;
    }

    .footer .container {
        width: calc(100% - 32px) !important;
    }
}

@media (max-width: 900px) {
    .home-ceo-grid,
    .name-origin-grid,
    .balanced-service-item,
    .ceo-profile-grid {
        grid-template-columns: 1fr;
    }

    .ceo-profile-grid {
        gap: 52px;
    }

    .home-ceo-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .balanced-service-item .balanced-service-copy,
    .balanced-service-item.reverse .balanced-service-copy {
        order: 1;
        padding: 64px 44px;
    }

    .balanced-service-item figure,
    .balanced-service-item.reverse figure {
        order: 2;
        min-height: 500px;
    }
}

@media (max-width: 560px) {
    .home-ceo-section,
    .balanced-service-section,
    .name-origin-section,
    .ceo-profile-section {
        padding-top: 82px;
        padding-bottom: 90px;
    }

    .home-ceo-grid {
        gap: 50px;
        padding-top: 54px;
    }

    .home-ceo-grid h2,
    .name-origin-grid h2,
    .ceo-profile-grid h2 {
        font-size: 2.35rem;
    }

    .ceo-profile-grid h2 {
        font-size: 1.75rem;
    }

    .home-ceo-highlights,
    .ceo-profile-highlights {
        grid-template-columns: 1fr;
    }

    .home-ceo-highlights div {
        min-height: 90px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .home-ceo-highlights div:first-child {
        border-top: 1px solid var(--line);
    }

    .home-ceo-highlights {
        border-top: 0;
        border-bottom: 0;
    }

    .balanced-service-list {
        padding-top: 54px;
    }

    .balanced-service-item .balanced-service-copy,
    .balanced-service-item.reverse .balanced-service-copy {
        padding: 54px 18px;
    }

    .balanced-service-copy h2 {
        font-size: 1.75rem;
    }

    .balanced-service-item figure,
    .balanced-service-item.reverse figure {
        min-height: 320px;
    }
}
