:root {
    --paper: #f0eee7;
    --paper-deep: #e4e0d5;
    --ink: #10110f;
    --muted: #686961;
    --line: rgba(16, 17, 15, 0.22);
    --acid: #d8ff36;
    --blue: #153dff;
    --display: "Inter Tight", "Noto Sans KR", sans-serif;
    --sans: "Inter Tight", "Noto Sans KR", sans-serif;
    --mono: "IBM Plex Mono", monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    z-index: 100;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 22%, rgba(16, 17, 15, 0.25) 0 0.45px, transparent 0.6px),
        radial-gradient(circle at 72% 64%, rgba(16, 17, 15, 0.17) 0 0.4px, transparent 0.55px);
    background-size: 7px 7px, 11px 11px;
    content: "";
    opacity: 0.13;
    pointer-events: none;
}

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

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

address,
p {
    margin: 0;
}

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

a:focus-visible {
    outline: 3px solid var(--acid);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    background: var(--ink);
    color: white;
    transform: translateY(-150%);
}

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

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    min-height: 78px;
    padding: 0 3vw;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    background: rgba(240, 238, 231, 0.92);
    backdrop-filter: blur(16px);
}

.wordmark {
    width: max-content;
    display: inline-flex;
    align-items: baseline;
    gap: 15px;
}

.wordmark > span,
.footer-wordmark {
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.065em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
}

.site-nav a {
    position: relative;
    padding: 29px 0 26px;
    font-size: 13px;
    font-weight: 500;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

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

.hero {
    position: relative;
    min-height: calc(100svh - 78px);
    padding: clamp(84px, 12vh, 148px) 3vw 38px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
    grid-template-rows: 1fr auto;
    gap: 56px 8vw;
    overflow: hidden;
}

.hero-copy {
    position: relative;
    z-index: 2;
    align-self: center;
}

.eyebrow {
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow-light {
    color: var(--acid);
}

.hero h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(72px, 9.2vw, 160px);
    line-height: 0.82;
    font-weight: 600;
    letter-spacing: -0.082em;
}

.hero h1 em,
.contact-section h2 em {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.075em;
}

.hero-korean {
    margin-top: 44px;
    font-family: "Noto Sans KR", sans-serif;
    font-size: clamp(17px, 1.45vw, 23px);
    line-height: 1.65;
    letter-spacing: -0.035em;
}

.hero-aside {
    position: relative;
    z-index: 2;
    max-width: 410px;
    align-self: end;
    justify-self: end;
    padding-bottom: 4vh;
}

.hero-aside > p {
    font-size: clamp(15px, 1.22vw, 19px);
    line-height: 1.7;
    letter-spacing: -0.025em;
}

.text-link,
.project-link {
    width: fit-content;
    margin-top: 32px;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    font-size: 13px;
    font-weight: 600;
}

.text-link span,
.project-link span {
    transition: transform 180ms ease;
}

.text-link:hover span,
.project-link:hover span {
    transform: translate(3px, 3px);
}

.hero-register {
    z-index: 2;
    grid-column: 1 / -1;
    align-self: end;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hero-register > span {
    min-height: 62px;
    padding: 20px 28px 16px 0;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: 16px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
}

.hero-register > span + span {
    padding-left: 28px;
}

.hero-register > span:last-child {
    border-right: 0;
}

.hero-register strong {
    color: var(--ink);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
}

.hero-orbit {
    position: absolute;
    z-index: 0;
    top: 7%;
    right: -8vw;
    width: min(49vw, 760px);
    aspect-ratio: 1;
    color: rgba(16, 17, 15, 0.2);
    transform: rotate(-12deg);
}

.orbit {
    position: absolute;
    inset: 7%;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.orbit-two {
    inset: 25% -9%;
    border-radius: 50%;
}

.orbit-center {
    position: absolute;
    top: 48%;
    left: 49%;
    font-family: var(--display);
    font-size: 12vw;
    font-weight: 500;
    line-height: 1;
    opacity: 0.08;
    transform: translate(-50%, -50%) rotate(12deg);
}

.orbit-dot {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--ink);
    box-shadow: 0 0 0 9px var(--acid);
}

.dot-one {
    top: 16%;
    left: 21%;
}

.dot-two {
    right: 6%;
    bottom: 28%;
    width: 7px;
    height: 7px;
    background: var(--blue);
    box-shadow: none;
}

.work-section {
    padding: 130px 3vw 150px;
    background: var(--ink);
    color: #f5f3ec;
}

.section-heading {
    margin-bottom: 84px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 8vw;
}

.section-heading h2,
.about-intro h2 {
    margin: 0;
    font-size: clamp(58px, 7vw, 110px);
    line-height: 0.88;
    font-weight: 500;
    letter-spacing: -0.07em;
}

.section-heading > p {
    max-width: 470px;
    margin-bottom: 8px;
    color: rgba(245, 243, 236, 0.66);
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: -0.025em;
}

.project-list {
    display: grid;
    gap: 22px;
}

.project {
    position: relative;
    overflow: hidden;
}

.project-car {
    min-height: 710px;
    padding: clamp(36px, 4.3vw, 72px);
    display: grid;
    grid-template-columns: minmax(330px, 0.64fr) minmax(560px, 1.25fr);
    gap: 5vw;
    background: #eeece5;
    color: var(--ink);
}

.project-copy {
    position: relative;
    z-index: 2;
}

.project-car .project-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-meta {
    min-height: 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: currentColor;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status {
    padding: 7px 9px;
    border: 1px solid currentColor;
    line-height: 1;
}

.status-build::before,
.status-live::before {
    width: 6px;
    height: 6px;
    margin-right: 7px;
    border-radius: 50%;
    display: inline-block;
    background: #ff6d3a;
    content: "";
}

.status-live::before {
    background: #55d275;
}

.project h3 {
    margin: 0;
    font-size: clamp(52px, 6vw, 92px);
    line-height: 0.87;
    font-weight: 600;
    letter-spacing: -0.075em;
}

.project-car h3 {
    margin-top: auto;
}

.project-lead {
    margin-top: 25px;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -0.045em;
}

.project-description {
    max-width: 470px;
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: -0.015em;
}

.project-car .project-link {
    margin-top: 36px;
}

.car-data-preview {
    min-width: 0;
    align-self: center;
    border: 1px solid #8f8f89;
    background: #fbfaf6;
    box-shadow: 0 32px 80px rgba(16, 17, 15, 0.15);
    transform: rotate(0.8deg);
    transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.project-car:hover .car-data-preview {
    transform: rotate(0) translateY(-6px);
}

.car-preview-head {
    min-height: 64px;
    padding: 0 24px;
    border-bottom: 1px solid #c8c7c1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.car-preview-head strong {
    font-size: 19px;
    letter-spacing: -0.055em;
}

.car-preview-head span {
    color: #6c6c68;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.06em;
}

.car-preview-body {
    padding: clamp(24px, 3vw, 44px);
}

.car-preview-kicker {
    margin-bottom: 22px;
    color: var(--blue);
    font-family: var(--mono);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.car-score-grid {
    min-height: 170px;
    border: 1px solid #d4d3cd;
    display: grid;
    grid-template-columns: 0.72fr 1.12fr 0.56fr;
}

.car-score-grid > div {
    padding: 22px;
    border-right: 1px solid #d4d3cd;
}

.car-score-grid > div:last-child {
    border-right: 0;
}

.car-score span,
.car-scale > span,
.car-percentile > span {
    font-size: 10px;
    font-weight: 600;
}

.car-score > div {
    margin-top: 22px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.car-score strong {
    color: var(--blue);
    font-size: clamp(38px, 4vw, 64px);
    line-height: 0.8;
    font-weight: 500;
    letter-spacing: -0.07em;
}

.car-score small {
    font-size: 11px;
}

.car-score p {
    margin-top: 17px;
    color: #2c8d43;
    font-size: 8px;
}

.car-scale {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scale-track {
    position: relative;
    height: 7px;
    margin-top: 38px;
    background: linear-gradient(90deg, #c6c6c1 0 26%, #d8ff36 26% 73%, #a8a8a2 73%);
}

.scale-track i {
    position: absolute;
    top: -7px;
    left: 71.2%;
    width: 2px;
    height: 21px;
    background: var(--blue);
    box-shadow: 0 0 0 4px #fbfaf6;
}

.car-scale .scale-labels {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
}

.car-scale .scale-labels small {
    font-size: 7px;
}

.car-percentile {
    display: flex;
    flex-direction: column;
}

.car-percentile strong {
    margin-top: auto;
    font-size: clamp(31px, 3.5vw, 52px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.car-percentile small {
    margin-top: 10px;
    color: var(--muted);
    font-size: 7px;
}

.car-metrics {
    margin-top: 14px;
    border: 1px solid #d4d3cd;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.car-metrics > div {
    min-height: 88px;
    padding: 17px;
    border-right: 1px solid #d4d3cd;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.car-metrics > div:last-child {
    border-right: 0;
}

.car-metrics span {
    color: var(--muted);
    font-size: 7px;
}

.car-metrics strong {
    font-size: clamp(16px, 1.8vw, 25px);
    font-weight: 500;
    letter-spacing: -0.04em;
}

.car-signal {
    margin-top: 14px;
    border: 1px solid #d4d3cd;
}

.car-signal > div {
    min-height: 42px;
    padding: 0 15px;
    border-bottom: 1px solid #e1e0db;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.car-signal > div:last-child {
    border-bottom: 0;
}

.car-signal > div:first-child {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 7px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.car-signal strong {
    font-size: 9px;
    font-weight: 500;
}

.car-signal > div:not(:first-child) span {
    color: #238640;
    font-family: var(--mono);
    font-size: 8px;
}

.car-signal .signal-up {
    color: #df542e !important;
}

.project-grid {
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 22px;
}

.project-grid .project {
    min-height: 920px;
    display: flex;
    flex-direction: column;
}

.project-grid .project-meta {
    padding: 30px clamp(28px, 3.2vw, 52px);
}

.project-grid .project-copy {
    flex: 1;
    padding: clamp(40px, 4vw, 64px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-grid .project h3 {
    margin-top: auto;
}

.project-grid .project-link {
    margin-top: 30px;
}

.project-leverage {
    background: #133f72;
    color: white;
}

.project-leverage .project-visual {
    margin: 0 clamp(28px, 3.2vw, 52px);
}

.project-visual-logo {
    position: relative;
    overflow: hidden;
    background: white;
}

.project-visual-logo::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    content: "";
    pointer-events: none;
}

.project-visual-logo img {
    width: 100%;
    aspect-ratio: 1.62;
    object-fit: cover;
    transition: transform 600ms ease;
}

.project-leverage:hover .project-visual-logo img {
    transform: scale(1.025);
}

.project-leverage .project-description {
    color: rgba(255, 255, 255, 0.72);
}

.project-yeouido {
    background: #d8e0da;
    color: #17342d;
}

.project-yeouido > .project-visual {
    margin: 0 clamp(28px, 3.2vw, 52px);
    overflow: hidden;
}

.project-yeouido > .project-visual img {
    width: 100%;
    aspect-ratio: 1.9;
    object-fit: cover;
    transition: transform 600ms ease;
}

.project-yeouido:hover > .project-visual img {
    transform: scale(1.025);
}

.about-section {
    position: relative;
    padding: 150px 3vw;
    background: var(--paper);
}

.about-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 7vw;
}

.about-intro .eyebrow {
    grid-column: 1 / -1;
}

.about-lead {
    max-width: 600px;
    align-self: end;
    padding-bottom: 8px;
    font-size: clamp(17px, 1.5vw, 23px);
    line-height: 1.75;
    letter-spacing: -0.035em;
}

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

.principles article {
    min-height: 340px;
    padding: 29px 44px 36px 0;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.principles article + article {
    padding-left: 44px;
}

.principles article:last-child {
    border-right: 0;
}

.principles span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
}

.principles h3 {
    margin: auto 0 17px;
    font-size: clamp(28px, 2.6vw, 42px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.05em;
}

.principles p {
    max-width: 330px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.origin-note {
    width: min(100%, 720px);
    margin: 110px 0 0 auto;
    padding: 32px 0;
    border-block: 1px solid var(--ink);
    display: grid;
    grid-template-columns: 0.5fr 1.2fr auto;
    align-items: end;
    gap: 30px;
}

.origin-note > span,
.origin-note small {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
}

.origin-note p {
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.contact-section {
    padding: 110px 3vw 120px;
    background: var(--acid);
    color: var(--ink);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.18fr 0.42fr;
    align-items: end;
    gap: 10vw;
}

.contact-section h2 {
    margin: 0;
    font-size: clamp(62px, 8vw, 126px);
    line-height: 0.84;
    font-weight: 600;
    letter-spacing: -0.075em;
}

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

.contact-copy p {
    font-size: 16px;
    line-height: 1.65;
}

.contact-copy a {
    margin-top: 35px;
    padding-block: 16px 12px;
    border-bottom: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    font-size: clamp(16px, 1.4vw, 21px);
    font-weight: 600;
}

.contact-copy a span {
    transition: transform 180ms ease;
}

.contact-copy a:hover span {
    transform: translate(3px, -3px);
}

.site-footer {
    padding: 70px 3vw 32px;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
    min-height: 220px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.footer-wordmark {
    color: white;
    font-size: clamp(54px, 8vw, 120px);
}

.footer-legal {
    border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.legal-row {
    min-height: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr;
    align-items: center;
    gap: 30px;
}

.legal-row:last-child {
    border-bottom: 0;
}

.legal-row p,
.legal-row address {
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    font-style: normal;
    line-height: 1.5;
}

.legal-row > :last-child {
    text-align: right;
}

.footer-links {
    padding-top: 24px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 13px 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 750ms ease, transform 750ms cubic-bezier(.2,.7,.2,1);
}

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

@media (max-width: 1050px) {
    .hero {
        grid-template-columns: 1fr 0.55fr;
    }

    .hero h1 {
        font-size: clamp(70px, 10.2vw, 112px);
    }

    .project-car {
        min-height: 620px;
        grid-template-columns: 0.65fr 1fr;
    }

    .project-grid .project {
        min-height: 780px;
    }

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

@media (max-width: 820px) {
    .site-header {
        min-height: 70px;
        padding-inline: 22px;
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        gap: 20px;
    }

    .site-nav a {
        padding-block: 25px 23px;
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        padding: 95px 22px 24px;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 64px;
    }

    .hero h1 {
        font-size: clamp(62px, 16vw, 105px);
    }

    .hero-korean {
        margin-top: 34px;
    }

    .hero-aside {
        max-width: 530px;
        justify-self: start;
        padding-bottom: 0;
    }

    .hero-register {
        grid-column: 1;
    }

    .hero-orbit {
        top: 6%;
        right: -29vw;
        width: 84vw;
    }

    .work-section,
    .about-section {
        padding: 100px 22px;
    }

    .section-heading,
    .about-intro {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .section-heading > p {
        margin: 0;
    }

    .project-car {
        min-height: auto;
        padding: 34px;
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .project-car .project-copy {
        min-height: 470px;
    }

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

    .project-grid .project {
        min-height: 820px;
    }

    .about-intro .eyebrow {
        grid-column: 1;
    }

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

    .principles article,
    .principles article + article {
        min-height: 250px;
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .principles article:last-child {
        border-bottom: 0;
    }

    .principles h3 {
        margin-top: 70px;
    }

    .origin-note {
        grid-template-columns: 1fr auto;
    }

    .origin-note p {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .contact-section {
        padding: 90px 22px;
    }

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

    .contact-copy {
        max-width: 520px;
    }

    .site-footer {
        padding-inline: 22px;
    }

    .footer-brand {
        min-height: 190px;
    }

    .legal-row {
        padding: 17px 0;
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .legal-row > :last-child {
        text-align: left;
    }
}

@media (max-width: 540px) {
    .site-header {
        gap: 14px;
    }

    .wordmark > span {
        font-size: 21px;
    }

    .site-nav {
        gap: 13px;
    }

    .site-nav a {
        font-size: 10px;
    }

    .hero {
        padding-top: 76px;
    }

    .hero h1 {
        font-size: clamp(54px, 17.8vw, 84px);
        line-height: 0.87;
    }

    .hero-korean br {
        display: none;
    }

    .hero-register {
        grid-template-columns: 1fr;
    }

    .hero-register > span,
    .hero-register > span + span {
        min-height: 48px;
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-register > span:last-child {
        border-bottom: 0;
    }

    .section-heading h2,
    .about-intro h2 {
        font-size: clamp(50px, 15vw, 74px);
    }

    .work-section {
        padding-inline: 14px;
    }

    .project-car {
        padding: 24px;
    }

    .project-car .project-copy {
        min-height: 430px;
    }

    .project h3 {
        font-size: clamp(48px, 16vw, 70px);
    }

    .car-score-grid {
        grid-template-columns: 1fr 0.72fr;
    }

    .car-score-grid > div {
        border-right: 1px solid #d4d3cd;
    }

    .car-score {
        border-bottom: 1px solid #d4d3cd;
    }

    .car-percentile {
        border-right: 0 !important;
        border-bottom: 1px solid #d4d3cd;
    }

    .car-scale {
        grid-column: 1 / -1;
        grid-row: 2;
        min-height: 130px;
        border-right: 0 !important;
    }

    .car-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .car-metrics > div:nth-child(2) {
        border-right: 0;
    }

    .car-metrics > div:nth-child(-n+2) {
        border-bottom: 1px solid #d4d3cd;
    }

    .project-grid .project {
        min-height: 680px;
    }

    .project-grid .project-meta {
        padding: 22px;
    }

    .project-grid .project-copy {
        padding: 32px 24px;
    }

    .project-leverage .project-visual,
    .project-yeouido > .project-visual {
        margin-inline: 22px;
    }

    .principles {
        margin-top: 80px;
    }

    .origin-note {
        margin-top: 75px;
    }

    .contact-section h2 {
        font-size: clamp(52px, 16vw, 80px);
    }

    .footer-brand {
        min-height: 170px;
        flex-direction: column;
        justify-content: flex-start;
    }

    .footer-wordmark {
        font-size: 58px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@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;
    }
}
