:root {
    --color-bg: #f5f3ee;
    --color-text: #111111;
    --color-text-sub: #777777;
    --color-accent: #274060;
    --color-border: #d8d6d0;
    --container-width: 1400px;
}

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

html {
    scroll-behavior: smooth;
    max-width: 100%;
}

body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

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

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 128px), var(--container-width));
    margin-inline: auto;
}

.section-label {
    margin: 0 0 20px;
    color: var(--color-text-sub);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.section-title {
    margin: 0;
    font-size: clamp(48px, 7vw, 110px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.empty-message {
    color: var(--color-text-sub);
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    width: 100%;
    mix-blend-mode: difference;
    color: #ffffff;
}

.site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding-inline: 64px;
}

.site-header__logo,
.global-menu__logo {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.menu-toggle__text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.menu-toggle__icon {
    position: relative;
    display: block;
    width: 28px;
    height: 12px;
}

.menu-toggle__icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
}

.menu-toggle__icon span:first-child {
    top: 2px;
}

.menu-toggle__icon span:last-child {
    top: 9px;
}

/* Full Screen Menu */
.global-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding: 32px 64px 40px;
    background: #111111;
    color: #f5f3ee;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.global-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.global-menu__header,
.global-menu__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.global-menu__close {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.global-menu__content {
    display: flex;
    align-items: center;
    flex: 1;
}

.global-menu__list {
    width: 100%;
    margin: 40px 0;
    padding: 0;
    list-style: none;
    counter-reset: menu-number;
}

.global-menu__list li {
    counter-increment: menu-number;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.global-menu__list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.global-menu.is-open .global-menu__list li:nth-child(1) { transition-delay: 0.08s; }
.global-menu.is-open .global-menu__list li:nth-child(2) { transition-delay: 0.13s; }
.global-menu.is-open .global-menu__list li:nth-child(3) { transition-delay: 0.18s; }
.global-menu.is-open .global-menu__list li:nth-child(4) { transition-delay: 0.23s; }
.global-menu.is-open .global-menu__list li:nth-child(5) { transition-delay: 0.28s; }

.global-menu__list a {
    display: flex;
    align-items: center;
    min-height: 100px;
    font-size: clamp(42px, 6vw, 90px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
    transition: transform 0.3s ease;
}

.global-menu__list a::before {
    content: "0" counter(menu-number);
    width: 70px;
    font-size: 12px;
    letter-spacing: 0.08em;
    opacity: 0.5;
}

.global-menu__list a::after {
    content: "↗";
    margin-left: auto;
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.global-menu__list a:hover {
    transform: translateX(10px);
}

.global-menu__list a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.global-menu__footer {
    padding-top: 24px;
    font-size: 11px;
    letter-spacing: 0.08em;
    opacity: 0.6;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--color-bg);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding: 110px 64px 48px;
}

.hero__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: auto;
    font-size: 11px;
    letter-spacing: 0.12em;
}

.hero__main {
    padding-block: 60px;
}

.hero__title,
.project-hero__title,
.selected-work__name,
.all-work-card__title {
    overflow-wrap: anywhere;
}

.hero__title {
    margin: 0;
    font-size: clamp(72px, 11vw, 190px);
    font-weight: 500;
    line-height: 0.78;
    letter-spacing: -0.075em;
}

.hero__title-line {
    display: block;
    will-change: transform;
}

.hero__title-line--02 {
    margin-left: 8vw;
}

.hero__title-line--03 {
    margin-left: 25vw;
}

.hero__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.hero__copy {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 34px);
    font-weight: 500;
    line-height: 1.5;
}

.hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.15em;
}

.hero__scroll-arrow {
    font-size: 22px;
    animation: scrollArrow 1.8s ease-in-out infinite;
}

.hero__decor {
    position: absolute;
    z-index: 1;
    border-radius: 999px;
    opacity: 0.85;
    pointer-events: none;
}

.hero__decor--01 {
    top: 15%;
    right: 10%;
    width: 280px;
    aspect-ratio: 1;
    background: var(--color-accent);
    transform: rotate(20deg);
}

.hero__decor--02 {
    bottom: 7%;
    left: 35%;
    width: 120px;
    aspect-ratio: 1;
    border: 1px solid var(--color-text);
}

@keyframes scrollArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Introduction */
.introduction,
.selected-works,
.all-works,
.skills,
.about-me {
    padding-block: 160px;
}

.introduction__grid,
.about-me__grid,
.project-overview__grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
}

.introduction__title {
    max-width: 1000px;
    margin: 0 0 56px;
    font-size: clamp(42px, 6vw, 90px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.045em;
}

.introduction__body {
    max-width: 640px;
    margin-left: auto;
    font-size: 16px;
    line-height: 2;
}

.introduction__body p {
    margin: 0 0 24px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-bottom: 8px;
    border-bottom: 1px solid currentColor;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.text-link span,
.contact-section__link span {
    transition: transform 0.3s ease;
}

.text-link:hover span,
.contact-section__link:hover span {
    transform: translateX(6px);
}

/* Selected Works */
.selected-works__header {
    margin-bottom: 100px;
}

.selected-works__title,
.all-works__title,
.skills__title,
.about-me__title {
    margin: 0;
    font-size: clamp(70px, 11vw, 180px);
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -0.07em;
}

.selected-works__list {
    display: grid;
    gap: 180px;
}

.selected-work:nth-child(even) {
    width: 82%;
    margin-left: auto;
}

.selected-work:nth-child(odd) {
    width: 90%;
}

.selected-work__meta,
.all-work-card__meta,
.work-card__meta,
.project-hero__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--color-text-sub);
    font-size: 11px;
    letter-spacing: 0.1em;
}

.selected-work__meta {
    margin-bottom: 18px;
}

.selected-work__number {
    font-weight: 700;
}

.selected-work__category {
    text-transform: uppercase;
}

.selected-work__image,
.all-work-card__image,
.work-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e7e4de;
}

.selected-work__image img,
.all-work-card__image img,
.work-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.selected-work__link:hover .selected-work__image img,
.all-work-card__link:hover .all-work-card__image img,
.work-card__link:hover .work-card__image img {
    transform: scale(1.03);
}

.selected-work__content {
    padding-top: 28px;
}

.selected-work__name {
    margin: 0;
    font-size: clamp(34px, 5vw, 72px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
}

.selected-work__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    color: var(--color-text-sub);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.selected-work__view,
.all-work-card__view,
.work-card__view {
    transition: transform 0.3s ease;
}

.selected-work__link:hover .selected-work__view,
.all-work-card__link:hover .all-work-card__view,
.work-card__link:hover .work-card__view {
    transform: translateX(5px);
}

/* All Works */
.all-works__header,
.skills__header {
    margin-bottom: 60px;
}

.work-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 64px;
}

.work-filter__button {
    padding: 10px 18px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: transparent;
    color: var(--color-text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.work-filter__button:hover,
.work-filter__button.is-active {
    background: var(--color-text);
    color: var(--color-bg);
    border-color: var(--color-text);
}

.all-works__grid,
.works-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 100px 40px;
}

.all-work-card.is-hidden {
    display: none;
}

.all-work-card__body,
.work-card__body {
    padding-top: 20px;
}

.all-work-card__meta,
.work-card__meta {
    margin-bottom: 16px;
}

.all-work-card__title,
.work-card__title {
    margin: 0 0 16px;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.all-work-card__view,
.work-card__view {
    display: inline-block;
    margin: 0;
    color: var(--color-text-sub);
    font-size: 11px;
    letter-spacing: 0.08em;
}

/* Skills */
.skills__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--color-border);
}

.skill-group {
    min-height: 320px;
    padding: 36px 24px 48px 0;
    border-bottom: 1px solid var(--color-border);
}

.skill-group:nth-child(even) {
    padding-left: 32px;
    border-left: 1px solid var(--color-border);
}

.skill-group__number {
    margin: 0 0 48px;
    color: var(--color-text-sub);
    font-size: 11px;
    letter-spacing: 0.08em;
}

.skill-group__title {
    margin: 0 0 28px;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 500;
    letter-spacing: -0.035em;
}

.skill-group__list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    line-height: 2;
}

/* AI */
.ai-creative {
    padding-block: 160px;
    background: var(--color-text);
    color: var(--color-bg);
}

.ai-creative .section-label {
    color: rgba(255, 255, 255, 0.5);
}

.ai-creative__header {
    margin-bottom: 80px;
}

.ai-creative__title {
    max-width: 1100px;
    margin: 0;
    font-size: clamp(46px, 7vw, 100px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.ai-process {
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-process__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    min-height: 110px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-process__item span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
}

.ai-process__item strong {
    font-size: clamp(32px, 5vw, 70px);
    font-weight: 500;
    letter-spacing: -0.04em;
}

.ai-creative__text {
    max-width: 700px;
    margin: 72px 0 0 auto;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 2;
}

/* About */
.about-me__title {
    margin-bottom: 60px;
}

.about-me__lead {
    max-width: 900px;
    margin: 0 0 60px;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.5;
    letter-spacing: -0.025em;
}

.about-me__text {
    max-width: 650px;
    margin-left: auto;
    font-size: 16px;
    line-height: 2;
}

/* Contact */
.contact-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-block: 160px;
    border-top: 1px solid var(--color-border);
}

.contact-section__title {
    margin: 40px 0;
    font-size: clamp(90px, 15vw, 230px);
    font-weight: 500;
    line-height: 0.75;
    letter-spacing: -0.08em;
}

.contact-section__text {
    margin: 0 0 40px;
    color: var(--color-text-sub);
    font-size: 15px;
}

.contact-section__link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* Single */
.project-hero {
    padding: 180px 0 80px;
}

.project-hero__meta {
    margin-bottom: 32px;
}

.project-hero__title {
    margin: 0;
    font-size: clamp(64px, 10vw, 160px);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.065em;
}

.project-visual {
    width: min(calc(100% - 128px), 1600px);
    margin-inline: auto;
    overflow: hidden;
    background: #e8e5df;
}

.project-visual__image {
    width: 100%;
    height: auto;
}

.project-overview {
    padding-block: 140px;
}

.project-overview__content {
    max-width: 900px;
    font-size: 17px;
    line-height: 2;
}

.project-overview__content > *:first-child {
    margin-top: 0;
}

.project-overview__content h2 {
    margin: 80px 0 24px;
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.project-overview__content h3 {
    margin: 56px 0 16px;
    font-size: 28px;
    font-weight: 500;
}

.project-overview__content img,
.project-overview__content video,
.project-overview__content iframe {
    max-width: 100%;
}

.project-overview__content img {
    height: auto;
    margin-block: 56px;
}

.project-info {
    padding-bottom: 140px;
}

.project-info__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.project-info__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 0;
}

.project-info__item + .project-info__item {
    padding-left: 32px;
    border-left: 1px solid var(--color-border);
}

.project-info__label {
    color: var(--color-text-sub);
    font-size: 10px;
    letter-spacing: 0.1em;
}

.project-navigation {
    padding: 80px 0 120px;
}

.project-navigation__inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    font-size: 13px;
    letter-spacing: 0.08em;
}

/* Archive / 404 */
.archive-page,
.not-found {
    padding: 180px 0 120px;
}

.archive-page__header {
    margin-bottom: 80px;
}

.pagination {
    margin-top: 80px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    border: 1px solid var(--color-border);
}

.page-numbers.current {
    background: var(--color-text);
    color: var(--color-bg);
    border-color: var(--color-text);
}

/* Footer */
.site-footer {
    padding: 64px;
    border-top: 1px solid var(--color-border);
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.site-footer p {
    margin: 0;
}

/* Reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

[data-image-reveal] {
    position: relative;
    overflow: hidden;
}

[data-image-reveal]::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: var(--color-text);
    transform: scaleX(1);
    transform-origin: right center;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
    pointer-events: none;
}

[data-image-reveal].is-visible::after {
    transform: scaleX(0);
}

.hero__title-line {
    opacity: 0;
    transform: translateY(60px);
    animation: heroTitleReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__title-line--01 { animation-delay: 0.15s; }
.hero__title-line--02 { animation-delay: 0.30s; }
.hero__title-line--03 { animation-delay: 0.45s; }

.hero__copy,
.hero__scroll,
.hero__top {
    opacity: 0;
    animation: heroFade 0.8s ease forwards;
}

.hero__top { animation-delay: 0.10s; }
.hero__copy { animation-delay: 0.65s; }
.hero__scroll { animation-delay: 0.80s; }

@keyframes heroTitleReveal {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
    .container {
        width: calc(100% - 64px);
    }

    .site-header__inner {
        padding-inline: 32px;
    }

    .hero__inner {
        padding: 100px 32px 40px;
    }

    .hero__title-line--02 {
        margin-left: 4vw;
    }

    .hero__title-line--03 {
        margin-left: 16vw;
    }

    .introduction,
    .selected-works,
    .all-works,
    .skills,
    .about-me,
    .ai-creative,
    .contact-section {
        padding-block: 120px;
    }

    .introduction__grid,
    .about-me__grid,
    .project-overview__grid {
        grid-template-columns: 1fr 2.5fr;
        gap: 40px;
    }

    .selected-work:nth-child(even) { width: 90%; }
    .selected-work:nth-child(odd) { width: 95%; }
    .all-works__grid,
    .works-grid { gap: 72px 28px; }
}

/* Smartphone */
@media (max-width: 767px) {
    .container {
        width: calc(100% - 40px);
    }

    .site-header__inner {
        min-height: 64px;
        padding-inline: 20px;
    }

    .site-header__logo,
    .global-menu__logo {
        font-size: 12px;
    }

    .menu-toggle__text,
    .global-menu__close {
        font-size: 11px;
    }

    .global-menu {
        padding: 24px 20px 28px;
    }

    .global-menu__list a {
        min-height: 76px;
        font-size: clamp(36px, 13vw, 58px);
    }

    .global-menu__list a::before {
        width: 42px;
        font-size: 10px;
    }

    .global-menu__footer {
        display: block;
    }

    .hero__inner {
        padding: 90px 20px 32px;
    }

    .hero__top {
        font-size: 9px;
    }

    .hero__main {
        padding-block: 50px;
    }

    .hero__title {
        font-size: clamp(48px, 16vw, 78px);
        line-height: 0.88;
    }

    .hero__title-line--02 {
        margin-left: 0;
    }

    .hero__title-line--03 {
        margin-left: 8vw;
    }

    .hero__copy {
        font-size: 20px;
    }

    .hero__decor--01 {
        top: 20%;
        right: -80px;
        width: 200px;
    }

    .hero__decor--02 {
        left: auto;
        right: 35%;
        bottom: 8%;
        width: 80px;
    }

    .introduction,
    .selected-works,
    .all-works,
    .skills,
    .about-me,
    .ai-creative {
        padding-block: 88px;
    }

    .introduction__grid,
    .about-me__grid,
    .project-overview__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .introduction__title {
        margin-bottom: 36px;
        font-size: clamp(34px, 10vw, 52px);
    }

    .introduction__body,
    .about-me__text {
        margin-left: 0;
        font-size: 15px;
    }

    .selected-works__header,
    .all-works__header,
    .skills__header {
        margin-bottom: 48px;
    }

    .selected-works__title,
    .all-works__title,
    .skills__title,
    .about-me__title {
        font-size: clamp(54px, 18vw, 90px);
    }

    .selected-works__list {
        gap: 80px;
    }

    .selected-work,
    .selected-work:nth-child(even),
    .selected-work:nth-child(odd) {
        width: 100%;
        margin-left: 0;
    }

    .selected-work__image,
    .all-work-card__image,
    .work-card__image {
        aspect-ratio: 4 / 3;
    }

    .selected-work__name {
        font-size: clamp(30px, 9vw, 44px);
    }

    .work-filter {
        gap: 8px;
        margin-bottom: 48px;
    }

    .work-filter__button {
        padding: 8px 14px;
        font-size: 10px;
    }

    .all-works__grid,
    .works-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

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

    .skill-group,
    .skill-group:nth-child(even) {
        min-height: auto;
        padding: 28px 0 36px;
        border-left: 0;
    }

    .ai-creative__title {
        font-size: clamp(36px, 10vw, 54px);
    }

    .ai-process {
        margin-top: 64px;
    }

    .ai-process__item {
        grid-template-columns: 48px 1fr;
        min-height: 76px;
    }

    .ai-process__item strong {
        font-size: clamp(28px, 9vw, 40px);
    }

    .ai-creative__text {
        margin-top: 56px;
        font-size: 14px;
    }

    .about-me__title {
        margin-bottom: 40px;
    }

    .about-me__lead {
        margin-bottom: 40px;
        font-size: clamp(24px, 7vw, 36px);
    }

    .contact-section {
        min-height: 65vh;
        padding-block: 88px;
    }

    .contact-section__title {
        font-size: clamp(64px, 21vw, 108px);
    }

    .project-hero {
        padding: 110px 0 48px;
    }

    .project-hero__title {
        font-size: clamp(44px, 14vw, 72px);
    }

    .project-visual {
        width: calc(100% - 40px);
    }

    .project-overview {
        padding-block: 80px;
    }

    .project-overview__content {
        font-size: 15px;
    }

    .project-info {
        padding-bottom: 90px;
    }

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

    .project-info__item + .project-info__item {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid var(--color-border);
    }

    .project-navigation {
        padding: 56px 0 80px;
    }

    .archive-page,
    .not-found {
        padding: 120px 0 80px;
    }

    .site-footer {
        padding: 40px 20px;
    }

    .site-footer__inner {
        display: block;
    }

    .site-footer__copyright {
        margin-top: 12px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    [data-reveal],
    [data-image-reveal],
    .hero__title-line,
    .hero__copy,
    .hero__scroll,
    .hero__top {
        opacity: 1 !important;
        transform: none !important;
    }

    [data-image-reveal]::after {
        display: none !important;
    }
}
