@charset "UTF-8";

/* FIX source: v2/concept.html and v2/css/concept.css */

.concept-page > main {
    padding-top: var(--header-height);
}

.subspace-concept-pattern,
.subspace-concept-pattern * {
    box-sizing: border-box;
}

.subspace-concept-pattern {
    overflow: hidden;
    margin: 0;
    color: var(--brand-text);
    background: var(--brand-base);
    font-family: var(--font-base);
}

.subspace-concept-pattern :where(.wp-block-group, .wp-block-image) {
    margin-block-start: 0;
    margin-block-end: 0;
}

.subspace-concept-pattern figure,
.subspace-concept-pattern p {
    margin: 0;
}

.subspace-concept-pattern img {
    display: block;
    width: 100%;
}

.subspace-concept-pattern h1,
.subspace-concept-pattern h2 {
    margin: 0;
    color: var(--brand-text);
    font-family: var(--font-base);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.concept-layout-label {
    color: var(--brand-accent);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.concept-layout-section-copy h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.5;
}

.concept-layout-section-copy p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 2;
}

/* Hero */
.concept-layout-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 54%) minmax(0, 46%);
    width: 100%;
    max-width: 1920px;
    height: min(820px, calc(100svh - var(--header-height)));
    min-height: 680px;
    margin-inline: auto;
    background: var(--brand-base);
}

.concept-layout-hero__copy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: clamp(72px, 8vw, 128px) clamp(40px, 4.5vw, 64px);
}

.concept-layout-hero h1 {
    margin-top: 28px;
    font-size: clamp(2.2rem, 3.1vw, 2.9rem);
    line-height: 1.48;
}

.concept-layout-hero h1 span {
    display: block;
}

.concept-layout-hero__lead {
    max-width: 650px;
    margin-top: 36px !important;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 2;
    overflow-wrap: anywhere;
    white-space: normal;
}

.concept-layout-hero__media {
    min-height: 0;
    overflow: hidden;
    background: var(--brand-section);
}

.concept-layout-hero__media img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

@media (min-width: 1921px) {
    .concept-layout-hero__media {
        width: calc(100% + (100vw - 1920px) / 2);
    }
}

/* Value */
.concept-layout-value {
    padding: 120px 0;
    background: var(--white);
}

.concept-layout-value__copy {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: clamp(48px, 8vw, 120px);
}

.concept-layout-value__text p + p {
    margin-top: 30px;
}

.concept-layout-value__photos {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: end;
    gap: 24px;
    margin-top: 80px;
}

.concept-layout-value__photo {
    overflow: hidden;
    background: var(--brand-section);
}

.concept-layout-value__photo--small {
    aspect-ratio: 4 / 3;
    margin-bottom: 56px !important;
}

.concept-layout-value__photo--large {
    aspect-ratio: 4 / 3;
}

.concept-layout-value__photo img {
    height: 100%;
    object-fit: cover;
}

/* Atmosphere */
.concept-layout-atmosphere {
    padding: 120px 0;
    background: var(--brand-dark);
    color: var(--white);
}

.concept-layout-atmosphere h2 {
    color: var(--white);
}

.concept-layout-atmosphere__lead {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: clamp(48px, 7vw, 104px);
}

.concept-layout-atmosphere__copy p {
    color: rgba(255, 255, 255, 0.76);
}

.concept-layout-atmosphere__copy h2 + p {
    margin-top: 36px;
}

.concept-layout-atmosphere__copy p + p {
    margin-top: 24px;
}

.concept-layout-atmosphere__photos {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    align-items: end;
    gap: 20px;
}

.concept-layout-atmosphere__photo {
    overflow: hidden;
    background: #30353a;
}

.concept-layout-atmosphere__photo--stairs {
    aspect-ratio: 4 / 5;
}

.concept-layout-atmosphere__photo--entrance {
    aspect-ratio: 4 / 5;
    margin-bottom: 64px !important;
}

.concept-layout-atmosphere__photo img {
    height: 100%;
    object-fit: cover;
}

.concept-layout-atmosphere__photo--stairs img {
    object-position: center 34%;
}

.concept-layout-atmosphere__photo--entrance img {
    object-position: center center;
}

.concept-layout-time {
    margin-top: 96px !important;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.concept-layout-time__photos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.concept-layout-time__photos figure {
    min-width: 0;
}

.concept-layout-time__photos img {
    height: clamp(160px, 18vw, 250px);
    object-fit: cover;
}

.concept-layout-time__photos figure:nth-child(1) img,
.concept-layout-time__photos figure:nth-child(2) img {
    object-position: left center;
}

.concept-layout-time__photos figure:nth-child(3) img,
.concept-layout-time__photos figure:nth-child(4) img {
    object-position: right center;
}

.concept-layout-time__caption {
    max-width: 720px;
    margin-top: 22px !important;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.875rem;
    line-height: 1.9;
}

/* Closing */
.concept-layout-closing {
    display: grid;
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
    min-height: 760px;
    background: var(--brand-section);
}

.concept-layout-closing__media {
    min-height: 760px;
    overflow: hidden;
}

.concept-layout-closing__media img {
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
}

.concept-layout-closing__copy {
    display: flex;
    align-items: center;
    padding: clamp(72px, 8vw, 128px) clamp(40px, 7vw, 112px);
}

.concept-layout-closing__copy-inner {
    max-width: 570px;
}

.concept-layout-closing h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.5;
}

.concept-layout-closing p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 2;
}

.concept-layout-closing h2 + p {
    margin-top: 36px;
}

.concept-layout-closing p + p {
    margin-top: 24px;
}

.concept-layout-closing__action {
    margin-top: 40px !important;
}

@media (max-width: 1024px) {
    .concept-layout-hero {
        grid-template-columns: minmax(0, 54%) minmax(0, 46%);
    }

    .concept-layout-hero__copy {
        padding-right: 48px;
        padding-left: 48px;
    }

    .concept-layout-hero h1 {
        font-size: clamp(2rem, 4vw, 2.6rem);
    }

    .concept-layout-atmosphere__lead {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 48px;
    }

    .concept-layout-closing {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .concept-page > main {
        padding-top: var(--header-height);
    }

    .concept-layout-section-copy h2,
    .concept-layout-closing h2 {
        font-size: 1.9rem;
        line-height: 1.55;
    }

    .concept-layout-hero {
        display: block;
        height: auto;
        min-height: max(760px, calc(100svh - var(--header-height)));
        background: var(--brand-dark);
        color: var(--white);
        isolation: isolate;
    }

    .concept-layout-hero::after {
        content: "";
        position: absolute;
        z-index: 1;
        inset: 0;
        background: linear-gradient(
            180deg,
            rgba(33, 37, 41, 0) 24%,
            rgba(33, 37, 41, 0.12) 43%,
            rgba(33, 37, 41, 0.9) 66%,
            var(--brand-dark) 76%
        );
        pointer-events: none;
    }

    .concept-layout-hero__copy {
        position: relative;
        z-index: 2;
        justify-content: flex-end;
        min-width: 0;
        min-height: max(760px, calc(100svh - var(--header-height)));
        padding: 48px 24px 44px;
    }

    .concept-layout-hero .concept-layout-label {
        color: rgba(255, 255, 255, 0.72);
    }

    .concept-layout-hero h1 {
        margin-top: 22px;
        color: var(--white);
        font-size: clamp(1.75rem, 7.7vw, 1.95rem);
        line-height: 1.5;
    }

    .concept-layout-hero__lead {
        margin-top: 28px !important;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.9;
    }

    .concept-layout-hero__lead br {
        display: none;
    }

    .concept-layout-hero__media {
        position: absolute;
        z-index: 0;
        inset: 0 0 auto;
        min-height: 0;
        aspect-ratio: 4 / 5;
        overflow: hidden;
    }

    .concept-layout-hero__media img {
        object-fit: cover;
        object-position: center top;
    }

    .concept-layout-value,
    .concept-layout-atmosphere {
        padding: 80px 0;
    }

    .concept-layout-value__copy,
    .concept-layout-atmosphere__lead {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .concept-layout-value__text p + p {
        margin-top: 24px;
    }

    .concept-layout-value__photos {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 48px;
    }

    .concept-layout-value__photo--small,
    .concept-layout-value__photo--large {
        margin: 0 !important;
        aspect-ratio: 4 / 3;
    }

    .concept-layout-atmosphere__copy h2 + p {
        margin-top: 28px;
    }

    .concept-layout-atmosphere__photos {
        gap: 12px;
        margin-top: 16px;
    }

    .concept-layout-atmosphere__photo--entrance {
        margin-bottom: 32px !important;
    }

    .concept-layout-time {
        margin-top: 64px !important;
        padding-top: 32px;
    }

    .concept-layout-time__photos {
        gap: 6px;
    }

    .concept-layout-time__photos img {
        height: 150px;
    }

    .concept-layout-time__caption {
        margin-top: 18px !important;
    }

    .concept-layout-closing {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .concept-layout-closing__media {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .concept-layout-closing__copy {
        padding: 72px 24px 80px;
    }

    .concept-layout-closing h2 + p {
        margin-top: 28px;
    }

    .concept-layout-closing__action {
        margin-top: 32px !important;
    }

    .concept-layout-closing__button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .concept-layout-value__copy br {
        display: none;
    }

    .concept-layout-time__photos img {
        height: 120px;
    }
}
