:root {
    --color-bg: #050505;
    --color-text: #fff;
    --color-muted: #aaa;
    --color-accent: #4da3ff;
    --font-serif: "Cormorant Garamond", "Pretendard", serif;
    --font-sans: "Pretendard", sans-serif;
    --gnb-font-family: var(--font-sans);
    --gnb-font-size: 13px;
    --gnb-font-weight: 400;
    --gnb-color: rgba(255, 255, 255, .84);
    --gnb-separator-color: rgba(255, 255, 255, .52);
    --gnb-letter-spacing: -.02em;
    --gnb-line-height: normal;
    --gnb-hover-color: var(--color-accent);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
}

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

button {
    font: inherit;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    transform: translateY(-160%);
    background: #fff;
    color: #000;
}

.skip-link:focus {
    transform: translateY(0);
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    isolation: isolate;
    background: #060708;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.hero.is-dragging {
    cursor: grabbing;
}

.hero a,
.hero button {
    cursor: pointer;
}

.hero-slider,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero-slider {
    z-index: -2;
}

.hero__background {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 1.15s ease, transform 6.5s cubic-bezier(.2, .7, .2, 1);
    will-change: opacity, transform;
}

.hero__background.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero__background--video {
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.hero__video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.hero__background--video.has-video-error .hero__video {
    visibility: hidden;
}

.hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .34) 42%, rgba(0, 0, 0, .2) 72%, rgba(0, 0, 0, .48) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .57) 0%, transparent 24%, transparent 68%, rgba(0, 0, 0, .58) 100%);
}

.site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    width: 100%;
    height: 132px;
    padding: 0 5.1%;
    opacity: 1;
    transform: translateY(0);
}

.site-logo {
    grid-column: 1;
    justify-self: start;
    font-family: var(--font-serif);
    font-size: clamp(28px, 2vw, 34px);
    font-weight: 500;
    line-height: 1;
}

.primary-nav--inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    white-space: nowrap;
}

.portfolio-gnb a {
    color: var(--gnb-color);
    font-family: var(--gnb-font-family);
    font-size: var(--gnb-font-size);
    font-weight: var(--gnb-font-weight);
    line-height: var(--gnb-line-height);
    letter-spacing: var(--gnb-letter-spacing);
    transition: color .25s ease;
}

.primary-nav--inline a {
    position: relative;
    padding: 8px 23px;
}

.primary-nav--inline a:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -2px;
    color: var(--gnb-separator-color);
    content: "/";
    transform: translateY(-50%);
}

.portfolio-gnb a:hover,
.portfolio-gnb a:focus-visible {
    color: var(--gnb-hover-color);
}

.global-menu-overlay {
    position: fixed;
    z-index: 99990;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    height: 100dvh;
    visibility: hidden;
    overflow: hidden;
    background: rgba(3, 5, 7, .985);
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s ease, visibility .32s ease;
}

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

.global-menu-overlay__inner {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: max(92px, env(safe-area-inset-top)) max(28px, env(safe-area-inset-right)) max(72px, env(safe-area-inset-bottom)) max(28px, env(safe-area-inset-left));
}

.global-menu-overlay__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, 1.1vh, 14px);
    width: min(680px, 100%);
    text-align: center;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .38s ease .06s, transform .42s cubic-bezier(.22, .75, .2, 1) .06s;
}

.global-menu-overlay.is-open .global-menu-overlay__nav {
    opacity: 1;
    transform: translateY(0);
}

.global-menu-overlay__nav a {
    display: block;
    padding: .08em .4em;
    color: rgba(255, 255, 255, .88);
    font-family: var(--font-serif);
    font-size: clamp(34px, 4.15vw, 62px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.025em;
    transition: color .22s ease, transform .22s ease;
}

.global-menu-overlay__nav a:hover,
.global-menu-overlay__nav a:focus-visible {
    color: var(--color-accent);
    transform: translateX(5px);
    outline: none;
}

.global-menu-overlay__close {
    position: fixed;
    z-index: 2;
    top: 45px;
    right: 5.1%;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.global-menu-overlay__close span {
    position: absolute;
    top: 50%;
    left: 7px;
    display: block;
    width: 29px;
    height: 1px;
    background: var(--color-accent);
}

.global-menu-overlay__close span:first-child {
    transform: rotate(45deg);
}

.global-menu-overlay__close span:last-child {
    transform: rotate(-45deg);
}

.global-menu-overlay__close:focus-visible {
    outline: 1px solid var(--color-accent);
    outline-offset: 3px;
}

@media (max-height: 700px) {
    .global-menu-overlay__inner {
        place-items: start center;
        padding-top: max(72px, env(safe-area-inset-top));
        padding-bottom: max(38px, env(safe-area-inset-bottom));
    }

    .global-menu-overlay__nav {
        gap: 2px;
        margin: auto 0;
    }

    .global-menu-overlay__nav a {
        font-size: clamp(25px, 6.2vh, 39px);
    }
}

.menu-toggle {
    position: relative;
    z-index: 12;
    display: grid;
    justify-self: end;
    grid-column: 3;
    width: 42px;
    height: 42px;
    padding: 10px 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 29px;
    height: 1px;
    margin: auto;
    background: var(--color-accent);
    transition: transform .3s ease, opacity .2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 9.8%;
    width: min(490px, 38vw);
    transform: translateY(-46%);
}

.hero-eyebrow,
.hero-title,
.hero-accent-line,
.hero-description,
.hero-cta {
    opacity: 1;
    transform: translateY(0);
}

.hero.is-motion-ready .site-header {
    opacity: 0;
    transform: translateY(-24px);
}

.hero.is-motion-ready .hero-eyebrow,
.hero.is-motion-ready .hero-title,
.hero.is-motion-ready .hero-accent-line,
.hero.is-motion-ready .hero-description,
.hero.is-motion-ready .hero-cta {
    opacity: 0;
    transform: translateY(28px);
}

.hero.is-motion-ready.is-motion-active .site-header {
    animation: header-in .85s cubic-bezier(.22, .8, .2, 1) .2s forwards;
}

.hero.is-motion-ready.is-motion-active .hero-eyebrow,
.hero.is-motion-ready.is-motion-active .hero-title,
.hero.is-motion-ready.is-motion-active .hero-accent-line,
.hero.is-motion-ready.is-motion-active .hero-description,
.hero.is-motion-ready.is-motion-active .hero-cta {
    animation-name: content-in;
    animation-duration: .8s;
    animation-timing-function: cubic-bezier(.22, .75, .2, 1);
    animation-fill-mode: forwards;
}

.hero.is-motion-ready.is-motion-active .hero__background.is-active {
    animation: hero-image-in 1.55s cubic-bezier(.2, .7, .2, 1) .05s both;
}

.hero-eyebrow {
    margin: 0 0 27px;
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .34em;
    text-transform: uppercase;
    animation-delay: .58s;
}

.hero-title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(70px, 5.7vw, 108px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .91;
    animation-delay: .68s;
}

.hero-accent-line {
    display: block;
    width: 74px;
    height: 1px;
    margin: 37px 0 34px;
    background: var(--color-accent);
    animation-delay: .82s;
}

.hero-description {
    margin: 0 0 47px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.78;
    animation-delay: .9s;
}

.hero-cta {
    position: relative;
    display: inline-grid;
    grid-template-columns: auto 65px;
    align-items: stretch;
    min-width: 285px;
    border: 1px solid rgba(255, 255, 255, .34);
    font-size: 13px;
    animation-delay: 1.02s;
    transition: border-color .3s ease, background-color .3s ease;
}

.hero-cta__label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 29px;
    transition: background-color .3s ease;
}

.hero-cta__trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: background-color .3s ease;
}

.hero-cta__icon {
    color: var(--color-accent);
    font-size: 22px;
    line-height: 1;
    transition: color .3s ease, transform .3s ease;
}

.hero-cta:focus-within,
.hero-cta.is-menu-open {
    border-color: var(--color-accent);
}

.hero-cta__label:hover,
.hero-cta__label:focus-visible,
.hero-cta__trigger:hover,
.hero-cta__trigger:focus-visible,
.hero-cta.is-menu-open .hero-cta__trigger {
    background: rgba(77, 163, 255, .1);
}

.hero-cta__trigger:hover .hero-cta__icon,
.hero-cta__trigger:focus-visible .hero-cta__icon,
.hero-cta.is-menu-open .hero-cta__icon {
    color: #fff;
    transform: translate(3px, 3px);
}

.work-category-menu {
    position: absolute;
    z-index: 8;
    top: calc(100% + 10px);
    left: -1px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% + 2px);
    padding: 7px;
    visibility: hidden;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(4, 7, 10, .94);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .4);
    opacity: 0;
    transform: translateY(-8px);
    backdrop-filter: blur(14px);
    transition: visibility .25s, opacity .25s ease, transform .25s ease;
}

.work-category-menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 11px;
    content: "";
}

.hero-cta.is-menu-open .work-category-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.work-category-menu a {
    position: relative;
    padding: 11px 12px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    letter-spacing: -.02em;
    transition: color .2s ease, background-color .2s ease;
}

.work-category-menu a::after {
    position: absolute;
    right: 11px;
    color: var(--color-accent);
    content: "\2198";
    opacity: 0;
    transform: translate(-4px, -4px);
    transition: opacity .2s ease, transform .2s ease;
}

.work-category-menu a:hover,
.work-category-menu a:focus-visible {
    background: rgba(77, 163, 255, .08);
    color: #fff;
}

.work-category-menu a:hover::after,
.work-category-menu a:focus-visible::after {
    opacity: 1;
    transform: translate(0, 0);
}

.hero-rail {
    position: absolute;
    z-index: 3;
    top: 42.5%;
    bottom: 6.5%;
    left: 3.6%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hero-dots {
    display: grid;
    gap: 12px;
}

.hero-dot {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .56);
    cursor: pointer;
    transition: background-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.hero-dot:hover,
.hero-dot:focus-visible {
    background: #fff;
    outline: none;
    transform: scale(1.35);
}

.hero-dot.is-active {
    background: var(--color-accent);
    box-shadow: 0 0 10px rgba(77, 163, 255, .4);
}

.scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.scroll-cue__line {
    display: block;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .7);
}

.scroll-cue__line--long {
    height: 54px;
}

.scroll-cue__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hero-bottom {
    position: absolute;
    z-index: 3;
    right: 4.2%;
    bottom: 6.6%;
    left: 7.6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.social-links {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .75);
}

.social-links a {
    transition: color .25s ease;
}

.social-links a:not(:last-child)::after {
    margin: 0 18px;
    color: rgba(255, 255, 255, .65);
    content: "/";
}

.social-links a:hover,
.social-links a:focus-visible {
    color: var(--color-accent);
}

.slide-status,
.slide-bars,
.hero-slider__controls {
    display: flex;
    align-items: center;
}

.hero-slider__controls {
    gap: 5px;
}

.hero-slider__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
    opacity: .68;
    transition: color .22s ease, opacity .22s ease, transform .15s ease;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus-visible {
    color: rgba(255, 255, 255, .95);
    opacity: 1;
}

.hero-slider__arrow:focus-visible {
    outline: 1px solid rgba(255, 255, 255, .55);
    outline-offset: 1px;
}

.hero-slider__arrow:active { transform: translateY(1px); }

.hero-slider__triangle {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.hero-slider__triangle--prev { border-right: 6px solid currentColor; }
.hero-slider__triangle--next { border-left: 6px solid currentColor; }

.slide-status {
    gap: 10px;
}

.slide-bars {
    gap: 5px;
    margin-right: 6px;
}

.slide-bars i {
    display: block;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .32);
}

.slide-bars .is-active {
    background: #fff;
}

.slide-status__current {
    color: var(--color-accent);
}

.slide-status__total {
    color: rgba(255, 255, 255, .75);
}

@keyframes hero-image-in {
    to { opacity: 1; transform: scale(1); }
}

@keyframes header-in {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes content-in {
    to { opacity: 1; transform: translateY(0); }
}

/* About / Career */
.about-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(150px, 10vw, 190px) 5vw clamp(160px, 11vw, 210px);
    background: #fff;
    color: #17191d;
    font-family: var(--font-sans);
}

.about-inner {
    display: grid;
    grid-template-columns: minmax(450px, .78fr) minmax(650px, 1.22fr);
    gap: clamp(70px, 6.5vw, 120px);
    width: min(100%, 1480px);
    margin: 0 auto;
}

.about-copy {
    position: relative;
    z-index: 2;
    padding-top: 18px;
}

.about-kicker,
.about-minor-heading {
    display: flex;
    align-items: center;
    color: #193f90;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
}

.about-kicker {
    gap: 22px;
    margin-bottom: 31px;
}

.about-kicker i {
    display: block;
    width: 48px;
    height: 1px;
    background: rgba(25, 63, 144, .65);
}

.about-title {
    margin: 0;
    color: #0b0c0e;
    font-family: var(--font-serif);
    font-size: clamp(92px, 7.2vw, 124px);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .76;
}

.about-role {
    margin: 27px 0 0;
    color: #193f90;
    font-family: var(--font-serif);
    font-size: 34px;
    font-style: italic;
    line-height: 1;
}

.about-introduction {
    max-width: 570px;
    margin-top: 49px;
    color: #303238;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 2.05;
    word-break: keep-all;
}

.about-introduction p {
    margin: 0;
}

.about-introduction p + p {
    margin-top: 3px;
}

.career-history {
    max-width: 500px;
    margin-top: 83px;
}

.about-minor-heading {
    gap: 21px;
}

.about-minor-heading h3 {
    flex: 0 0 auto;
    margin: 0;
    font: inherit;
}

.about-minor-heading > span {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(25, 63, 144, .48);
}

.career-list {
    position: relative;
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
}

.career-list::after {
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 48%;
    width: 1px;
    background: #d7d9de;
    content: "";
}

.career-list li {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    min-height: 35px;
    color: #2d3035;
    font-family: var(--font-sans);
    font-size: 14px;
    letter-spacing: -.045em;
}

.career-company {
    padding-right: 31px;
}

.career-period {
    padding-left: 65px;
    white-space: nowrap;
}

.about-visuals {
    position: relative;
    min-height: 770px;
}

.about-image {
    position: absolute;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    background: #f1f2f3;
}

.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.about-image:hover img {
    transform: scale(1.018);
}

.about-image--workspace {
    top: 0;
    right: 0;
    width: 80%;
    aspect-ratio: 1.46 / 1;
}

.about-image--designer {
    top: 404px;
    left: 0;
    z-index: 2;
    width: 45%;
    aspect-ratio: 1.33 / 1;
}

.about-image--tablet {
    top: 440px;
    right: 9%;
    z-index: 2;
    width: 40%;
    aspect-ratio: 1.33 / 1;
}

.about-signature {
    position: absolute;
    top: 4px;
    left: 12.5%;
    display: flex;
    z-index: 3;
    flex-direction: column;
    align-items: center;
    gap: 23px;
    color: #85878c;
}

.about-signature span {
    font-size: 11px;
    letter-spacing: .32em;
    writing-mode: vertical-rl;
}

.about-signature i {
    display: block;
    width: 1px;
    height: 58px;
    background: #a8abb1;
}

.about-blue-square {
    position: absolute;
    z-index: 3;
    right: 5.8%;
    top: 635px;
    width: 27px;
    height: 27px;
    background: #4d6684;
}

.about-skills {
    position: absolute;
    z-index: 4;
    right: 1%;
    bottom: 2px;
    left: 7%;
}

.about-minor-heading--skills {
    justify-content: flex-start;
    gap: 20px;
}

.about-minor-heading--skills > span {
    flex: 0 0 34px;
    width: 34px;
}

.about-skills p {
    margin: 19px 0 0 54px;
    color: #55585f;
    font-family: var(--font-sans);
    font-size: 13px;
    letter-spacing: -.035em;
    line-height: 1.8;
    white-space: nowrap;
}

/* About scroll reveal */
.about-section.is-motion-ready .about-kicker,
.about-section.is-motion-ready .about-title,
.about-section.is-motion-ready .about-role,
.about-section.is-motion-ready .about-introduction,
.about-section.is-motion-ready .career-history,
.about-section.is-motion-ready .about-signature,
.about-section.is-motion-ready .about-blue-square,
.about-section.is-motion-ready .about-skills {
    opacity: 0;
    transform: translateY(30px);
}

.about-section.is-motion-ready .about-image {
    opacity: 0;
    transform: translateY(35px);
}

.about-section.is-motion-ready .about-image--workspace {
    clip-path: inset(0 0 100% 0);
}

.about-section.is-motion-ready .about-image--designer {
    clip-path: inset(0 100% 0 0);
}

.about-section.is-motion-ready .about-image--tablet {
    clip-path: inset(0 0 0 100%);
}

.about-section.is-motion-ready.is-visible .about-kicker,
.about-section.is-motion-ready.is-visible .about-title,
.about-section.is-motion-ready.is-visible .about-role,
.about-section.is-motion-ready.is-visible .about-introduction,
.about-section.is-motion-ready.is-visible .career-history,
.about-section.is-motion-ready.is-visible .about-signature,
.about-section.is-motion-ready.is-visible .about-blue-square,
.about-section.is-motion-ready.is-visible .about-skills,
.about-section.is-motion-ready.is-visible .about-image {
    opacity: 1;
    transform: translateY(0);
}

.about-section.is-motion-ready.is-visible .about-image {
    clip-path: inset(0 0 0 0);
}

.about-section.is-motion-ready .about-kicker {
    transition: opacity .72s ease, transform .72s cubic-bezier(.22, .75, .2, 1);
}

.about-section.is-motion-ready .about-title {
    transition: opacity .9s ease .1s, transform .9s cubic-bezier(.22, .75, .2, 1) .1s;
}

.about-section.is-motion-ready .about-role {
    transition: opacity .8s ease .2s, transform .8s cubic-bezier(.22, .75, .2, 1) .2s;
}

.about-section.is-motion-ready .about-introduction {
    transition: opacity .82s ease .3s, transform .82s cubic-bezier(.22, .75, .2, 1) .3s;
}

.about-section.is-motion-ready .career-history {
    transition: opacity .85s ease .43s, transform .85s cubic-bezier(.22, .75, .2, 1) .43s;
}

.about-section.is-motion-ready .about-image--workspace {
    transition: opacity .9s ease .12s, transform 1s cubic-bezier(.22, .75, .2, 1) .12s, clip-path 1.05s cubic-bezier(.7, 0, .2, 1) .12s;
}

.about-section.is-motion-ready .about-signature {
    transition: opacity .72s ease .32s, transform .72s cubic-bezier(.22, .75, .2, 1) .32s;
}

.about-section.is-motion-ready .about-image--designer {
    transition: opacity .85s ease .47s, transform .95s cubic-bezier(.22, .75, .2, 1) .47s, clip-path 1s cubic-bezier(.7, 0, .2, 1) .47s;
}

.about-section.is-motion-ready .about-image--tablet {
    transition: opacity .85s ease .58s, transform .95s cubic-bezier(.22, .75, .2, 1) .58s, clip-path 1s cubic-bezier(.7, 0, .2, 1) .58s;
}

.about-section.is-motion-ready .about-blue-square {
    transform: translateY(22px) rotate(-12deg) scale(.75);
    transition: opacity .65s ease .7s, transform .75s cubic-bezier(.22, .75, .2, 1) .7s;
}

.about-section.is-motion-ready.is-visible .about-blue-square {
    transform: translateY(0) rotate(0) scale(1);
}

.about-section.is-motion-ready .about-skills {
    transition: opacity .8s ease .75s, transform .8s cubic-bezier(.22, .75, .2, 1) .75s;
}

@media (max-width: 1450px) {
    :root {
        --gnb-font-size: 12px;
    }

    .site-header {
        grid-template-columns: minmax(150px, 1fr) auto minmax(80px, 1fr);
        padding-inline: 4.2%;
    }

    .global-menu-overlay__close {
        right: 4.2%;
    }

    .primary-nav--inline a {
        padding-inline: 14px;
    }

    .hero-content {
        left: 9.8%;
    }
}

@media (max-width: 1120px) {
    .site-header {
        display: flex;
        justify-content: space-between;
        height: 105px;
        padding-inline: 6%;
    }

    .global-menu-overlay__close {
        top: 31px;
        right: 6%;
    }

    .primary-nav--inline {
        display: none;
    }

    .hero-content {
        width: min(480px, 48vw);
    }

    .hero-slider__arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 660px;
        height: 100svh;
    }

    .hero__background {
        background-position: 59% center;
    }

    .hero__shade {
        background: rgba(0, 0, 0, .3);
    }

    .site-header {
        height: 86px;
        padding-inline: 7%;
    }

    .site-logo {
        font-size: 27px;
    }

    .global-menu-overlay__inner {
        padding: max(78px, env(safe-area-inset-top)) max(22px, env(safe-area-inset-right)) max(46px, env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
    }

    .global-menu-overlay__nav {
        gap: clamp(4px, .8vh, 9px);
    }

    .global-menu-overlay__nav a {
        font-size: clamp(28px, 10vw, 42px);
    }

    .global-menu-overlay__close {
        top: 22px;
        right: 7%;
    }

    .hero-content {
        top: 0;
        bottom: 0;
        left: 10%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        box-sizing: border-box;
        width: 82%;
        padding-bottom: calc(clamp(40px, 7svh, 64px) + 96px + env(safe-area-inset-bottom));
        transform: none;
    }

    .hero-eyebrow {
        margin-bottom: 18px;
        font-size: 9px;
        letter-spacing: .3em;
    }

    .hero-title {
        font-size: clamp(56px, 17vw, 78px);
        line-height: .92;
    }

    .hero-accent-line {
        width: 56px;
        margin: 24px 0 22px;
    }

    .hero-description {
        margin-bottom: 0;
        font-size: 12px;
        line-height: 1.7;
    }

    .hero-description br {
        display: none;
    }

    .hero-cta {
        display: none;
    }

    .hero-rail {
        display: none;
    }

    .hero-bottom {
        right: 7%;
        bottom: calc(clamp(40px, 7svh, 64px) + env(safe-area-inset-bottom));
        left: 10%;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-items: end;
        justify-content: start;
        width: auto;
    }

    .hero-slider__controls {
        grid-row: 1;
        justify-self: start;
        margin-bottom: 4px;
    }

    .slide-status {
        gap: 7px;
        line-height: 1;
    }

    .slide-status__current {
        font-size: 20px;
        font-weight: 500;
    }

    .slide-status__total {
        font-size: 14px;
        opacity: .6;
    }

    .social-links {
        grid-row: 2;
        justify-self: start;
        flex-wrap: wrap;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        font-size: 14px;
    }

    .social-links a:not(:last-child)::after {
        margin-inline: 8px;
    }

    .slide-bars {
        display: none;
    }
}

@media (max-width: 520px) {
    .hero-bottom {
        font-size: 10px;
    }

    .slide-status {
        gap: 6px;
    }
}

@media (max-width: 1280px) {
    .about-inner {
        grid-template-columns: minmax(420px, .82fr) minmax(540px, 1.18fr);
        gap: 55px;
    }

    .about-title {
        font-size: 96px;
    }

    .about-introduction {
        font-size: 14px;
    }

    .career-period {
        padding-left: 42px;
    }

    .about-visuals {
        min-height: 720px;
    }

    .about-image--designer {
        top: 365px;
    }

    .about-image--tablet {
        top: 398px;
    }

    .about-blue-square {
        top: 579px;
    }
}

@media (max-width: 1020px) {
    .about-section {
        padding-inline: 8vw;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 100px;
    }

    .about-copy,
    .career-history {
        max-width: 620px;
    }

    .about-visuals {
        width: min(100%, 760px);
        min-height: 750px;
        margin-left: auto;
    }

    .about-image--designer {
        top: 390px;
    }

    .about-image--tablet {
        top: 425px;
    }

    .about-blue-square {
        top: 619px;
    }
}

@media (max-width: 700px) {
    .about-section {
        padding: 110px 7vw 120px;
    }

    .about-inner {
        gap: 75px;
    }

    .about-kicker {
        margin-bottom: 25px;
    }

    .about-title {
        font-size: clamp(65px, 20vw, 88px);
        line-height: .82;
    }

    .about-role {
        margin-top: 21px;
        font-size: 28px;
    }

    .about-introduction {
        margin-top: 40px;
        font-size: 14px;
        line-height: 1.95;
    }

    .about-introduction br {
        display: none;
    }

    .career-history {
        margin-top: 68px;
    }

    .career-list li {
        grid-template-columns: 44% 56%;
        min-height: 39px;
        font-size: 13px;
    }

    .career-list::after {
        left: 44%;
    }

    .career-company {
        padding-right: 15px;
    }

    .career-period {
        padding-left: 22px;
    }

    .about-visuals {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        min-height: 0;
        margin: 0;
    }

    .about-image {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .about-image--workspace {
        grid-column: 1 / -1;
    }

    .about-image--designer,
    .about-image--tablet {
        aspect-ratio: 1 / 1.08;
    }

    .about-signature {
        display: none;
    }

    .about-blue-square {
        display: none;
    }

    .about-skills {
        position: relative;
        inset: auto;
        grid-column: 1 / -1;
        margin-top: 42px;
    }

    .about-skills p {
        margin: 16px 0 0 0;
        font-size: 12px;
        line-height: 1.9;
        white-space: normal;
    }
}

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