:root {
    --orange: #ff5a1f;
    --orange-dark: #e6430d;
    --black: #11100e;
    --white: #fdfdfb;
    --cream: #f1eee6;
    --line: rgba(17, 16, 14, 0.17);
    --page: min(1440px, calc(100vw - 96px));
    --display-font:
        "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--white);
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(255, 90, 31, 0.07),
            transparent 23rem
        ),
        var(--white);
    color: var(--black);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    content: "";
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

::selection {
    background: var(--orange);
    color: var(--white);
}

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

button {
    color: inherit;
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
}
.linkedin:hover a {
    color: var(--orange);
}
.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 200;
    padding: 0.8rem 1rem;
    transform: translateY(-150%);
    background: var(--black);
    color: var(--white);
    font-weight: 700;
    transition: transform 180ms ease;
}

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

.header {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    padding: 20px max(28px, calc((100vw - 1440px) / 2));
    transform: translateX(-50%);
    transition:
        padding 300ms ease,
        background-color 300ms ease,
        border-color 300ms ease;
}

.header.is-scrolled {
    padding-top: 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--line);
    background: rgba(253, 253, 251, 0.88);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 10px;
    width: fit-content;
}

.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    transform: rotate(-8deg);
}

.brand-name {
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -0.05em;
}

.brand-name span,
.accent {
    color: var(--orange);
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 46px);
    font-size: 13px;
    font-weight: 700;
}

.nav a,
.footer-links a {
    position: relative;
}

.nav a::after,
.footer-links a::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 300ms var(--ease);
}

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

.header-cta {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 20px;
    padding: 12px 16px 12px 20px;
    border: 1px solid var(--black);
    border-radius: 99px;
    font-size: 13px;
    font-weight: 750;
    transition:
        color 220ms ease,
        background 220ms ease;
}

.header-cta span {
    transition: transform 250ms var(--ease);
}

.header-cta:hover {
    background: var(--black);
    color: var(--white);
}

.header-cta:hover span {
    transform: rotate(45deg);
}

.menu-button {
    display: none;
}

.section {
    width: var(--page);
    margin-inline: auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.7fr);
    gap: clamp(20px, 5vw, 80px);
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 62px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 clamp(28px, 5vh, 58px);
    color: #5d5b56;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 32px;
    height: 2px;
    background: var(--orange);
}

.hero h1 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(4.2rem, 7.5vw, 8.8rem);
    font-weight: 700;
    letter-spacing: -0.09em;
    line-height: 0.8;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--black);
}

.hero-bottom {
    display: grid;
    grid-template-columns: minmax(220px, 430px) auto;
    align-items: end;
    gap: clamp(30px, 5vw, 80px);
    margin-top: clamp(46px, 8vh, 88px);
    margin-left: clamp(0px, 7vw, 120px);
}

.hero-bottom > p {
    margin: 0;
    color: #5d5b56;
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.55;
}

.hero-bottom strong {
    color: var(--black);
    font-weight: 700;
}

.round-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 122px;
    height: 122px;
    padding: 20px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.25;
    transform: rotate(-6deg);
    transition:
        transform 400ms var(--ease),
        background 250ms ease;
}

.round-link:hover {
    background: var(--black);
    transform: rotate(0deg) scale(1.06);
}

.round-link-arrow {
    align-self: flex-end;
    font-size: 22px;
}

.hero-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
}

.shape {
    position: absolute;
    width: min(25vw, 360px);
    aspect-ratio: 0.73;
    border-radius: 48% 52% 42% 58% / 38% 43% 57% 62%;
}

.shape-back {
    background: var(--black);
    transform: rotate(-16deg) translate(-24px, 20px);
}

.shape-front {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-inline: 7%;
    background: var(--orange);
    color: var(--white);
    font-family: var(--display-font);
    font-size: clamp(3.6rem, 5.8vw, 6.4rem);
    font-weight: 700;
    letter-spacing: -0.09em;
    line-height: 0.82;
    transform: rotate(7deg);
    animation: float 6s ease-in-out infinite;
}

.shape-front span {
    transform: translateX(-4%);
}

.shape-front span:last-child {
    align-self: flex-end;
    transform: translateX(4%);
}

.orbit {
    position: absolute;
    border: 1px solid rgba(17, 16, 14, 0.22);
    border-radius: 50%;
}

.orbit-one {
    width: min(30vw, 430px);
    aspect-ratio: 1;
    transform: rotate(64deg) scaleY(0.42);
}

.orbit-two {
    width: min(36vw, 520px);
    aspect-ratio: 1;
    transform: rotate(-30deg) scaleY(0.62);
}

.availability {
    position: absolute;
    top: 2%;
    right: 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.availability-dot {
    width: 8px;
    height: 8px;
    margin-top: 2px;
    border-radius: 50%;
    background: #2bb673;
    box-shadow: 0 0 0 5px rgba(43, 182, 115, 0.14);
    animation: pulse 2s ease infinite;
}

.art-label {
    position: absolute;
    bottom: 4%;
    left: 0;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--black);
    font-family: Georgia, serif;
    font-size: 15px;
    font-style: italic;
}

.marquee {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--black);
    color: var(--white);
    transform: rotate(-1deg) scale(1.02);
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 17px 0;
    animation: marquee 28s linear infinite;
}

.marquee span {
    padding-inline: 34px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.marquee i {
    color: var(--orange);
    font-style: normal;
}

.showcase {
    padding-top: clamp(110px, 14vw, 210px);
    padding-bottom: clamp(90px, 12vw, 170px);
}

.showcase-heading {
    display: grid;
    grid-template-columns: 0.75fr 1.75fr 0.85fr;
    align-items: end;
    gap: 36px;
    margin-bottom: 70px;
}

.showcase-heading h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(3.2rem, 6vw, 7.2rem);
    font-weight: 700;
    letter-spacing: -0.075em;
    line-height: 0.91;
}

.showcase-heading > p:last-child {
    margin: 0;
    color: #696660;
    font-size: 14px;
    line-height: 1.65;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 28px;
}

.gallery-card {
    position: relative;
    display: flex;
    grid-column: span 4;
    min-height: 520px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--black);
    background: var(--cream);
    color: var(--black);
    cursor: pointer;
    text-align: left;
    transition:
        color 250ms ease,
        background 250ms ease,
        transform 500ms var(--ease),
        box-shadow 500ms var(--ease);
}

.gallery-card-large {
    grid-column: span 6;
    background: var(--black);
    color: var(--white);
}

.gallery-card-wide {
    grid-column: span 6;
    background: var(--orange);
    color: var(--white);
}

.gallery-card:hover,
.gallery-card:focus-visible {
    box-shadow: 12px 12px 0 var(--orange);
    transform: translate(-4px, -4px);
}

.gallery-card-wide:hover,
.gallery-card-wide:focus-visible {
    box-shadow: 12px 12px 0 var(--black);
}

.gallery-card-media {
    position: relative;
    display: block;
    min-height: 360px;
    overflow: hidden;
    border-radius: 26px;
    background: var(--white);
}

.gallery-card-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, transparent 56%, rgba(17, 16, 14, 0.3)),
        radial-gradient(circle at 85% 10%, rgba(255, 90, 31, 0.25), transparent 18rem);
    pointer-events: none;
}

.gallery-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: top center;
    transition: transform 700ms var(--ease);
}

.gallery-card:hover .gallery-card-media img,
.gallery-card:focus-visible .gallery-card-media img {
    transform: scale(1.045);
}

.gallery-card-media-phone {
    display: grid;
    place-items: center;
    background: var(--black);
}

.gallery-card-media-phone img {
    width: auto;
    max-width: 78%;
    height: 100%;
    object-fit: contain;
}

.gallery-card-copy {
    display: grid;
    gap: 8px;
    padding: 20px 4px 2px;
}

.gallery-card-index {
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.gallery-card-wide .gallery-card-index {
    color: var(--black);
}

.gallery-card-copy strong {
    font-family: var(--display-font);
    font-size: clamp(31px, 3.6vw, 54px);
    letter-spacing: -0.075em;
    line-height: 0.9;
}

.gallery-card-meta {
    opacity: 0.7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-card-copy p {
    max-width: 520px;
    margin: 4px 0 0;
    opacity: 0.78;
    font-size: 13px;
    line-height: 1.55;
}

.other-creations {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: end;
    gap: 34px;
    margin-top: 34px;
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid var(--black);
    background:
        radial-gradient(circle at 100% 0, rgba(255, 90, 31, 0.14), transparent 18rem),
        var(--white);
}

.other-creations h3 {
    margin: 18px 0 0;
    font-family: var(--display-font);
    font-size: clamp(34px, 5vw, 74px);
    font-weight: 700;
    letter-spacing: -0.075em;
    line-height: 0.92;
}

.other-creation-links {
    display: grid;
    gap: 14px;
}

.other-creation-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--black);
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 800;
    letter-spacing: -0.045em;
    transition:
        color 250ms ease,
        padding 350ms var(--ease);
}

.other-creation-links a:hover {
    padding-inline: 14px;
    color: var(--orange);
}

.other-creation-links span {
    font-size: 20px;
}

.project-modal {
    width: min(1180px, calc(100vw - 36px));
    max-height: calc(100vh - 36px);
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--black);
}

.project-modal::backdrop {
    background: rgba(17, 16, 14, 0.72);
    backdrop-filter: blur(14px);
}

.project-modal-shell {
    display: grid;
    max-height: calc(100vh - 36px);
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: var(--white);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.project-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px clamp(18px, 3vw, 34px);
    border-bottom: 1px solid var(--line);
}

.project-modal-kicker {
    margin: 0 0 8px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.project-modal h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(34px, 4vw, 64px);
    letter-spacing: -0.075em;
    line-height: 0.9;
}

.project-modal-close {
    display: inline-grid;
    grid-template-columns: auto 24px;
    align-items: center;
    justify-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 8px 10px 8px 18px;
    border: 1px solid var(--black);
    border-radius: 99px;
    background: transparent;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition:
        color 250ms ease,
        background 250ms ease;
}

.project-modal-close:hover {
    background: var(--black);
    color: var(--white);
}

.project-modal-close span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    font-size: 18px;
    line-height: 1;
}

.project-modal-description {
    max-width: 620px;
    margin: 16px 0 0;
    color: #5d5a54;
    font-size: 14px;
    line-height: 1.6;
}

.project-modal-body {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
}

.project-modal-stage {
    position: relative;
    display: grid;
    min-height: 0;
    place-items: center;
    overflow: auto;
    padding: clamp(18px, 3vw, 32px);
    background:
        radial-gradient(circle at 85% 12%, rgba(255, 90, 31, 0.16), transparent 28rem),
        #181715;
}

.project-modal-stage img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 210px);
    object-fit: contain;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.project-modal-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: rgba(253, 253, 251, 0.13);
    color: var(--white);
    cursor: pointer;
    font-size: 21px;
    transform: translateY(-50%);
    transition:
        color 250ms ease,
        background 250ms ease,
        transform 350ms var(--ease);
}

.project-modal-nav:hover {
    background: var(--white);
    color: var(--black);
}

.project-modal-nav-prev {
    left: 18px;
}

.project-modal-nav-next {
    right: 18px;
}

.project-modal-side {
    display: grid;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 14px;
    padding: 22px;
    border-left: 1px solid var(--line);
}

.project-modal-side > p {
    margin: 0;
    color: #6a6863;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-modal-thumbs {
    display: grid;
    gap: 12px;
    min-height: 0;
    overflow: auto;
    padding-right: 4px;
}

.project-modal-thumb {
    display: block;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    background: var(--cream);
    cursor: pointer;
    opacity: 0.62;
    transition:
        border-color 250ms ease,
        opacity 250ms ease,
        transform 350ms var(--ease);
}

.project-modal-thumb:hover,
.project-modal-thumb.is-active {
    border-color: var(--orange);
    opacity: 1;
}

.project-modal-thumb.is-active {
    transform: translateX(-4px);
}

.project-modal-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
}

.projects {
    padding-top: clamp(110px, 14vw, 210px);
    padding-bottom: clamp(100px, 14vw, 200px);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 2.2fr 0.8fr;
    align-items: end;
    gap: 36px;
    margin-bottom: 82px;
}

.section-kicker {
    margin: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-heading h2,
.expertise h2,
.about h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(3.2rem, 6vw, 7.2rem);
    font-weight: 700;
    letter-spacing: -0.075em;
    line-height: 0.91;
}

.section-heading > p:last-child,
.expertise-intro > p:last-child {
    margin: 0;
    color: #696660;
    font-size: 14px;
    line-height: 1.65;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px 30px;
}

.project-card {
    display: flex;
    min-height: 690px;
    flex-direction: column;
    padding: clamp(22px, 3vw, 42px);
}

.project-card:nth-child(1),
.project-card:nth-child(2) {
    grid-column: span 6;
}

.project-card:nth-child(3) {
    grid-column: 3 / span 8;
    margin-top: 40px;
}

.project-orange {
    background: var(--orange);
    color: var(--white);
}

.project-dark {
    background: var(--black);
    color: var(--white);
}

.project-cream {
    background: var(--cream);
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid currentColor;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project-meta span:first-child {
    font-size: 15px;
}

.project-visual {
    position: relative;
    display: flex;
    min-height: 390px;
    flex: 1;
    align-items: center;
    justify-content: center;
    margin-block: 25px;
    overflow: hidden;
}

.mini-window {
    position: relative;
    width: min(90%, 450px);
    aspect-ratio: 1.25;
    overflow: hidden;
    padding: 20px;
    background: #e8e2d7;
    color: var(--black);
    box-shadow: 18px 22px 0 rgba(17, 16, 14, 0.16);
    transform: rotate(-3deg);
    transition: transform 600ms var(--ease);
}

.project-card:hover .mini-window {
    transform: rotate(0deg) scale(1.03);
}

.mini-window > span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.mini-window strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 18px;
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    font-weight: 950;
    letter-spacing: -0.09em;
    line-height: 0.78;
}

.building {
    position: absolute;
    right: -2%;
    bottom: -15%;
    width: 65%;
    height: 78%;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0 28px,
            rgba(255, 255, 255, 0.5) 29px 32px
        ),
        repeating-linear-gradient(0deg, #151412 0 35px, #d7c8b1 36px 39px);
    clip-path: polygon(24% 15%, 84% 0, 100% 100%, 0 100%);
    transform: rotate(-4deg);
}

.visual-note {
    position: absolute;
    right: 1%;
    bottom: 6%;
    padding: 10px 14px;
    background: var(--white);
    color: var(--black);
    font-family: Georgia, serif;
    font-size: 11px;
    font-style: italic;
    transform: rotate(5deg);
}

.visual-dashboard {
    align-items: stretch;
    width: 96%;
    max-height: 380px;
    margin-inline: auto;
    background: #f4f1ea;
    box-shadow: 16px 22px 0 rgba(255, 90, 31, 0.9);
    color: var(--black);
    transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
    transition: transform 600ms var(--ease);
}

.project-card:hover .visual-dashboard {
    transform: perspective(900px) rotateY(0) rotateX(0) scale(1.02);
}

.dashboard-side {
    display: flex;
    width: 22%;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-right: 1px solid #ccc7bc;
}

.dash-logo {
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 950;
}

.dashboard-side i {
    width: 70%;
    height: 6px;
    border-radius: 4px;
    background: #ccc7bc;
}

.dashboard-main {
    position: relative;
    flex: 1;
    padding: 28px;
}

.dash-title {
    display: block;
    font-size: clamp(18px, 2.1vw, 29px);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.dash-stats {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 50px;
}

.dash-stats b {
    font-size: clamp(36px, 5vw, 70px);
    letter-spacing: -0.08em;
}

.dash-stats small {
    color: #2b9d67;
    font-weight: 800;
}

.chart {
    position: absolute;
    right: 24px;
    bottom: 28px;
    left: 24px;
    height: 110px;
    border-bottom: 1px solid #bbb7ad;
    background: repeating-linear-gradient(
        0deg,
        transparent 0 27px,
        rgba(17, 16, 14, 0.08) 28px 29px
    );
}

.chart span {
    position: absolute;
    inset: 0;
    background: var(--orange);
    clip-path: polygon(
        0 91%,
        12% 80%,
        23% 86%,
        33% 49%,
        45% 59%,
        56% 25%,
        67% 46%,
        80% 15%,
        90% 30%,
        100% 0,
        100% 100%,
        0 100%
    );
    opacity: 0.9;
}

.visual-mobile {
    gap: clamp(18px, 5vw, 64px);
}

.phone {
    position: relative;
    width: min(34%, 190px);
    aspect-ratio: 0.52;
    overflow: hidden;
    padding: 16px;
    border: 6px solid var(--black);
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 26px 50px rgba(17, 16, 14, 0.18);
    transition: transform 600ms var(--ease);
}

.phone::before {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 40%;
    height: 10px;
    border-radius: 20px;
    content: "";
    background: var(--black);
    transform: translateX(-50%);
}

.phone-left {
    transform: rotate(-8deg) translateY(15px);
}

.phone-right {
    background: var(--orange);
    color: var(--white);
    transform: rotate(7deg) translateY(-12px);
}

.project-card:hover .phone-left {
    transform: rotate(-4deg) translateY(5px);
}

.project-card:hover .phone-right {
    transform: rotate(3deg) translateY(-4px);
}

.phone-label {
    display: block;
    margin-top: 13px;
    font-size: 7px;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.phone-photo {
    height: 53%;
    margin-top: 15px;
    border-radius: 70px 70px 10px 10px;
    background:
        radial-gradient(circle at 70% 25%, #fff 0 7%, transparent 8%),
        linear-gradient(150deg, transparent 45%, #322d25 46% 65%, #8a735b 66%);
}

.phone-left strong {
    display: block;
    margin-top: 13px;
    font-size: clamp(15px, 2vw, 25px);
    letter-spacing: -0.07em;
    line-height: 0.9;
}

.phone-right b {
    display: block;
    margin-top: 24px;
    font-size: 13px;
}

.mood-orb {
    width: 85%;
    aspect-ratio: 1;
    margin: 25px auto 16px;
    border-radius: 48% 52% 57% 43% / 43% 40% 60% 57%;
    background: var(--black);
    box-shadow: inset -20px -12px 0 rgba(255, 255, 255, 0.13);
}

.phone-right small {
    display: block;
    text-align: center;
    font-size: 7px;
}

.project-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid currentColor;
}

.project-footer h3 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 40px);
    letter-spacing: -0.055em;
}

.project-footer p {
    max-width: 420px;
    margin: 0;
    opacity: 0.72;
    font-size: 12px;
    line-height: 1.5;
}

.project-arrow {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 20px;
    transition:
        transform 350ms var(--ease),
        color 250ms ease,
        background 250ms ease;
}

.project-card:hover .project-arrow {
    background: currentColor;
    color: var(--orange);
    transform: rotate(45deg);
}

.project-cream:hover .project-arrow {
    color: var(--cream);
}

.expertise {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: clamp(50px, 9vw, 150px);
    padding-top: clamp(100px, 12vw, 180px);
    padding-bottom: clamp(100px, 12vw, 180px);
    border-top: 1px solid var(--line);
}

.expertise-intro {
    position: sticky;
    top: 130px;
    align-self: start;
}

.expertise h2 {
    margin: 32px 0 36px;
}

.expertise-intro > p:last-child {
    max-width: 390px;
}

.service {
    display: grid;
    grid-template-columns: 42px 1fr 60px;
    align-items: center;
    gap: 24px;
    min-height: 190px;
    border-top: 1px solid var(--black);
}

.service:last-child {
    border-bottom: 1px solid var(--black);
}

.service-number {
    align-self: start;
    padding-top: 30px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 850;
}

.service h3 {
    margin: 0 0 13px;
    font-size: clamp(25px, 3vw, 42px);
    letter-spacing: -0.055em;
}

.service p {
    max-width: 520px;
    margin: 0;
    color: #6a6863;
    font-size: 13px;
    line-height: 1.55;
}

.service-symbol {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    background: var(--cream);
    font-size: 23px;
    transition:
        color 300ms ease,
        background 300ms ease,
        transform 500ms var(--ease);
}

.service:hover .service-symbol {
    background: var(--orange);
    color: var(--white);
    transform: rotate(25deg) scale(1.12);
}

.about {
    display: grid;
    grid-template-columns: minmax(340px, 0.85fr) 1.15fr;
    align-items: center;
    gap: clamp(60px, 10vw, 150px);
    padding-top: clamp(100px, 13vw, 180px);
    padding-bottom: clamp(100px, 13vw, 180px);
    border-top: 1px solid var(--line);
}

.about-badge {
    position: relative;
    display: grid;
    width: min(100%, 530px);
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: var(--orange);
    box-shadow:
        0 34px 90px rgba(255, 90, 31, 0.28),
        inset 0 -28px 70px rgba(17, 16, 14, 0.12);
    transform: rotate(-5deg);
}

.about-badge::before,
.about-badge::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.about-badge::before {
    inset: 11%;
    animation: badgeRingBreathe 4s ease-in-out infinite;
}

.about-badge::after {
    inset: 22%;
    animation: badgeRingBreathe 4.8s ease-in-out infinite reverse;
}

.badge-word {
    position: absolute;
    z-index: 2;
    color: var(--white);
    font-family: var(--display-font);
    font-size: clamp(2.4rem, 5.6vw, 5.4rem);
    font-weight: 700;
    letter-spacing: -0.09em;
    line-height: 0.85;
    white-space: nowrap;
    transform: rotate(var(--badge-word-rotate));
    animation: badgeWordAlive 4.8s ease-in-out infinite;
}

.badge-word-one {
    top: 18%;
    left: 7%;
    --badge-word-rotate: -12deg;
}

.badge-word-two {
    right: 5%;
    bottom: 17%;
    --badge-word-rotate: 9deg;
    color: var(--black);
    font-size: clamp(2.2rem, 5.1vw, 5rem);
    animation-delay: -1.8s;
}

.badge-center {
    z-index: 3;
    display: grid;
    place-items: center;
    color: var(--black);
    font-family: var(--display-font);
    font-size: clamp(5rem, 9vw, 8.8rem);
    font-weight: 700;
    letter-spacing: -0.12em;
    line-height: 0.72;
    text-align: center;
    animation: badgeCenterPulse 4.4s ease-in-out infinite;
}

.badge-center i {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 0 12px;
    border-radius: 99px;
    background: var(--black);
    color: var(--white);
    font-family: var(--body-font);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.about h2 {
    margin: 34px 0 38px;
}

.about-lead {
    max-width: 680px;
    margin: 0 0 38px;
    font-size: clamp(21px, 2.2vw, 32px);
    font-weight: 550;
    letter-spacing: -0.03em;
    line-height: 1.35;
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    color: #66635e;
    font-size: 13px;
    line-height: 1.7;
}

.about-columns p {
    margin: 0;
}

.resume-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.resume-card {
    padding: 22px;
    border: 1px solid var(--black);
    background: var(--cream);
}

.resume-card-wide {
    grid-column: 1 / -1;
    background: var(--black);
    color: var(--white);
}

.resume-card h3 {
    margin: 0 0 14px;
    color: var(--orange);
    font-family: var(--display-font);
    font-size: 20px;
    letter-spacing: -0.04em;
}

.resume-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 18px;
    color: #5d5a54;
    font-size: 12px;
    line-height: 1.55;
}

.resume-card-wide p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.65;
}

.resume-card .interest-list {
    display: flex;
    max-width: 720px;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.resume-card .interest-list li {
    position: relative;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 99px;
    color: rgba(255, 255, 255, 0.82);
    cursor: default;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition:
        color 250ms ease,
        border-color 250ms ease,
        background 250ms ease,
        transform 350ms var(--ease);
}

.resume-card .interest-list li::after {
    position: absolute;
    top: -22px;
    right: -10px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--black);
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
    content: attr(data-emoji);
    font-size: 19px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(0.55) rotate(-12deg);
    transition:
        opacity 220ms ease,
        transform 350ms var(--ease);
}

.resume-card .interest-list li:hover,
.resume-card .interest-list li:active {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.resume-card .interest-list li:hover::after,
.resume-card .interest-list li:active::after {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(6deg);
}

.ai-note {
    position: relative;
    margin-top: 34px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--black);
    background:
        linear-gradient(135deg, rgba(255, 90, 31, 0.12), transparent 42%),
        var(--white);
    box-shadow: 10px 10px 0 var(--orange);
}

.ai-note::after {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: "";
    background: var(--orange);
    box-shadow: 18px 0 0 var(--black);
}

.ai-note-kicker {
    margin: 0 0 14px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ai-note p:last-child {
    max-width: 700px;
    margin: 0;
    color: #55524d;
    font-size: clamp(14px, 1.15vw, 17px);
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--black);
}

.stats div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stats strong {
    font-size: clamp(28px, 4vw, 50px);
    letter-spacing: -0.07em;
}

.stats span {
    color: #74716a;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact {
    width: 100%;
    padding: 70px max(48px, calc((100vw - 1440px) / 2)) 30px;
    background: var(--orange);
    color: var(--white);
}

.contact-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.contact-top > span {
    position: relative;
    padding-left: 16px;
    font-size: 11px;
    font-weight: 700;
}

.contact-top > span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    content: "";
    background: var(--white);
    transform: translateY(-50%);
}

.contact-main {
    padding: clamp(70px, 10vw, 140px) 0 clamp(90px, 12vw, 160px);
}

.contact h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(4.4rem, 10vw, 11rem);
    font-weight: 700;
    letter-spacing: -0.09em;
    line-height: 0.77;
}

.contact h2 em {
    color: var(--black);
    font-family: Georgia, serif;
    font-weight: 400;
}

.contact h2 > span {
    color: var(--black);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    margin-top: clamp(60px, 8vw, 100px);
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(760px, 100%);
    margin: 0 0 0 auto;
    padding: 22px 0;
    border-bottom: 2px solid var(--white);
    font-size: clamp(18px, 2.4vw, 34px);
    font-weight: 750;
    letter-spacing: -0.04em;
    transition:
        color 250ms ease,
        padding 350ms var(--ease);
}

.contact-link:hover {
    padding-inline: 14px;
    color: var(--black);
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        color 250ms ease,
        background 250ms ease,
        transform 350ms var(--ease);
}

.contact-pill:hover {
    background: var(--white);
    color: var(--black);
    transform: translateX(-6px);
}

.contact-pill-dark {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.contact-pill-dark:hover {
    background: var(--white);
    color: var(--black);
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 34px;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 850ms var(--ease),
        transform 850ms var(--ease);
}

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

@keyframes float {
    0%,
    100% {
        transform: rotate(7deg) translateY(0);
    }
    50% {
        transform: rotate(4deg) translateY(-16px);
    }
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.12);
    }
    50% {
        box-shadow: 0 0 0 9px rgba(43, 182, 115, 0);
    }
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

@keyframes badgeAliveFloat {
    0%,
    100% {
        border-radius: 50%;
        transform: rotate(-5deg) translateY(0) scale(1);
    }
    50% {
        border-radius: 48% 52% 51% 49% / 52% 47% 53% 48%;
        transform: rotate(-3deg) translateY(-12px) scale(1.015);
    }
}

@keyframes badgeRingBreathe {
    0%,
    100% {
        opacity: 0.62;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes badgeWordAlive {
    0%,
    100% {
        transform: rotate(var(--badge-word-rotate)) translateY(0);
    }
    50% {
        transform: rotate(calc(var(--badge-word-rotate) + 2deg)) translateY(-8px);
    }
}

@keyframes badgeCenterPulse {
    0%,
    100% {
        transform: scale(1);
        text-shadow: none;
    }
    50% {
        transform: scale(1.06);
        text-shadow: 0 14px 30px rgba(17, 16, 14, 0.16);
    }
}

@media (max-width: 1080px) {
    :root {
        --page: calc(100vw - 56px);
    }

    .hero {
        grid-template-columns: 1.25fr 0.75fr;
    }

    .marquee {
        transform: none;
    }

    .hero h1 {
        font-size: clamp(3.8rem, 7.8vw, 6.6rem);
    }

    .shape {
        width: 28vw;
    }

    .section-heading {
        grid-template-columns: 0.7fr 2fr;
    }

    .showcase-heading {
        grid-template-columns: 0.7fr 2fr;
    }

    .showcase-heading > p:last-child {
        grid-column: 2;
    }

    .gallery-card,
    .gallery-card-large,
    .gallery-card-wide {
        grid-column: span 6;
    }

    .section-heading > p:last-child {
        grid-column: 2;
    }

    .project-card {
        min-height: 610px;
    }

    .project-card:nth-child(3) {
        grid-column: 2 / span 10;
    }

    .about {
        grid-template-columns: minmax(300px, 0.75fr) 1.25fr;
        gap: 60px;
    }
}

@media (max-width: 760px) {
    :root {
        --page: calc(100vw - 36px);
    }

    .header {
        left: 0;
        grid-template-columns: 1fr auto;
        padding: 15px 18px;
        transform: none;
    }

    .header.is-scrolled {
        backdrop-filter: none;
    }

    .header-cta {
        display: none;
    }

    .menu-button {
        display: flex;
        z-index: 2;
        width: 42px;
        height: 42px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border: 0;
        border-radius: 50%;
        background: var(--black);
        cursor: pointer;
    }

    .menu-button span {
        width: 17px;
        height: 1px;
        background: var(--white);
        transition: transform 250ms ease;
    }

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

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

    .nav {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 16px;
        padding: 72px 9vw;
        background: var(--orange);
        color: var(--white);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-15px);
        transition:
            opacity 250ms ease,
            transform 350ms var(--ease);
    }

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

    .nav a {
        font-size: clamp(3rem, 15vw, 6rem);
        font-weight: 900;
        letter-spacing: -0.08em;
    }

    .hero {
        display: flex;
        min-height: auto;
        flex-direction: column;
        gap: 20px;
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .eyebrow {
        margin-bottom: 32px;
        font-size: 9px;
    }

    .hero h1 {
        font-size: clamp(3rem, 14.5vw, 5.2rem);
        line-height: 0.84;
    }

    .outline-text {
        -webkit-text-stroke-width: 1.5px;
    }

    .hero-bottom {
        grid-template-columns: 1fr auto;
        gap: 18px;
        margin: 44px 0 0;
    }

    .hero-bottom > p {
        font-size: 14px;
    }

    .round-link {
        width: 98px;
        height: 98px;
        padding: 15px;
        font-size: 10px;
    }

    .hero-art {
        min-height: 430px;
    }

    .shape {
        width: 58vw;
        max-width: 280px;
    }

    .shape-front {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .orbit-one {
        width: 75vw;
    }
    .orbit-two {
        width: 85vw;
    }

    .availability {
        top: 4%;
        right: 4%;
    }

    .art-label {
        bottom: 2%;
    }

    .section-heading {
        display: block;
        margin-bottom: 46px;
    }

    .showcase-heading {
        display: block;
        margin-bottom: 46px;
    }

    .section-heading h2,
    .showcase-heading h2,
    .expertise h2,
    .about h2 {
        margin: 24px 0;
        font-size: clamp(3.3rem, 15vw, 5.5rem);
    }

    .showcase-heading > p:last-child {
        max-width: 380px;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .gallery-card {
        min-height: auto;
        padding: 14px;
    }

    .gallery-card-media {
        min-height: 280px;
        border-radius: 18px;
    }

    .gallery-card-media img {
        min-height: 280px;
    }

    .gallery-card-media-phone img {
        max-width: 62%;
    }

    .other-creations {
        grid-template-columns: 1fr;
        align-items: start;
        margin-top: 24px;
        padding: 24px;
    }

    .other-creation-links a {
        padding: 16px 0;
    }

    .section-heading > p:last-child {
        max-width: 380px;
    }

    .project-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .project-card:nth-child(3) {
        margin-top: 0;
    }

    .project-card {
        min-height: 580px;
        padding: 20px;
    }

    .project-visual {
        min-height: 330px;
    }

    .project-meta {
        font-size: 7px;
    }

    .project-footer p {
        max-width: 270px;
    }

    .visual-dashboard {
        max-height: 300px;
        box-shadow: 10px 13px 0 rgba(255, 90, 31, 0.9);
    }

    .dashboard-side {
        padding: 14px;
    }

    .dashboard-main {
        padding: 20px;
    }

    .chart {
        right: 18px;
        bottom: 20px;
        left: 18px;
        height: 85px;
    }

    .phone {
        width: 38%;
        padding: 11px;
        border-width: 4px;
        border-radius: 22px;
    }

    .expertise {
        display: block;
    }

    .expertise-intro {
        position: static;
        margin-bottom: 60px;
    }

    .service {
        grid-template-columns: 26px 1fr 44px;
        gap: 12px;
        min-height: 165px;
    }

    .service-symbol {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .about {
        display: flex;
        flex-direction: column;
    }

    .about-badge {
        width: min(100%, 480px);
    }

    .badge-word {
        font-size: clamp(2.1rem, 13vw, 4.5rem);
    }

    .badge-word-one {
        top: 18%;
        left: 8%;
    }

    .badge-word-two {
        right: 6%;
        bottom: 18%;
    }

    .badge-center {
        font-size: clamp(4.5rem, 27vw, 7.2rem);
    }

    .badge-center i {
        min-height: 22px;
        padding-inline: 10px;
        font-size: 9px;
    }

    .about-copy {
        width: 100%;
    }

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

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

    .resume-card-wide {
        grid-column: auto;
    }

    .ai-note {
        box-shadow: 7px 7px 0 var(--orange);
    }

    .stats {
        gap: 12px;
    }

    .stats span {
        font-size: 7px;
    }

    .contact {
        padding: 55px 18px 25px;
    }

    .contact-top {
        align-items: flex-start;
        gap: 30px;
    }

    .contact-top > span {
        max-width: 150px;
        font-size: 9px;
    }

    .contact h2 {
        font-size: clamp(4rem, 19vw, 7rem);
    }

    .contact-actions {
        align-items: stretch;
    }

    .contact-link {
        width: 100%;
    }

    .project-modal {
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
    }

    .project-modal-shell {
        max-height: calc(100vh - 20px);
    }

    .project-modal-header {
        align-items: flex-start;
        padding: 16px;
    }

    .project-modal-close {
        grid-template-columns: 24px;
        flex: 0 0 auto;
        padding: 10px;
        font-size: 0;
        gap: 0;
    }

    .project-modal-close span {
        font-size: 22px;
    }

    .project-modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 1fr) auto;
    }

    .project-modal-stage {
        min-height: min(66vh, 560px);
        padding: 16px;
    }

    .project-modal-stage img {
        max-height: calc(100vh - 300px);
    }

    .project-modal-nav {
        width: 40px;
        height: 40px;
        background: rgba(17, 16, 14, 0.45);
    }

    .project-modal-nav-prev {
        left: 10px;
    }

    .project-modal-nav-next {
        right: 10px;
    }

    .project-modal-side {
        border-top: 1px solid var(--line);
        border-left: 0;
        padding: 14px 16px 16px;
    }

    .project-modal-thumbs {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0 4px;
    }

    .project-modal-thumb {
        width: 112px;
        flex: 0 0 112px;
    }

    .project-modal-thumb.is-active {
        transform: translateY(-3px);
    }

    .footer {
        align-items: flex-end;
        gap: 26px;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
    }
}

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