.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.96rem;
    font-weight: 800;
    transition: 0.2s ease;
}

.button--primary {
    color: white;
    background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
    box-shadow: var(--shadow-soft);
}

.button--primary:hover {
    transform: translateY(-1px);
}

.button--ghost {
    color: var(--text);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.62);
}

.button--ghost:hover {
    background: white;
}

.button--soft {
    color: var(--accent-strong);
    background: var(--accent-soft);
}

.metric-card,
.info-card,
.project-card,
.collection-card,
.gallery-card,
.tour-panel,
.process-panel {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.metric-card {
    padding: 22px;
    border-radius: 24px;
}

.metric-card__value {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.metric-card__label {
    color: var(--text-soft);
    line-height: 1.5;
}

.collection-card {
    display: grid;
    grid-template-rows: 240px auto;
    overflow: hidden;
    border-radius: 30px;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-card__body,
.project-card__body,
.gallery-card__body {
    padding: 24px;
}

.collection-card__kicker,
.project-card__eyebrow {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent-strong);
    font-weight: 800;
}

.collection-card h3,
.project-card h3,
.process-step h3 {
    margin: 0 0 10px;
    font-size: 1.28rem;
}

.collection-card p,
.project-card p,
.process-step p,
.gallery-card__caption,
.info-card__value {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.72;
}

.collection-card__actions,
.project-card__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-card {
    overflow: hidden;
    border-radius: 30px;
}

.project-card__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.project-card__year {
    padding-top: 6px;
    font-size: 0.84rem;
    color: var(--text-faint);
    white-space: nowrap;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-soft);
    font-size: 0.84rem;
    font-weight: 700;
    border: 1px solid rgba(31, 24, 16, 0.08);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.info-card {
    border-radius: 24px;
    padding: 22px;
}

.info-card__label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 800;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.gallery-card {
    overflow: hidden;
    border-radius: 24px;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-card__caption {
    font-size: 0.92rem;
}

.tour-panel {
    border-radius: 32px;
    padding: 18px;
}

.tour-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 8px 18px;
}

.tour-toolbar__text {
    max-width: 540px;
}

.tour-toolbar__text h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.tour-toolbar__text p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.65;
}

.tour-toolbar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tour-stage {
    overflow: hidden;
    border-radius: 24px;
    background: #120f0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: min(76svh, 860px);
}

.tour-stage iframe {
    display: block;
    width: 100%;
    min-height: min(76svh, 860px);
    border: 0;
    background: #120f0a;
}

.process-panel {
    border-radius: 32px;
    padding: 26px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.process-step {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.56);
}

.process-step__index {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent-strong);
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
}

@media (max-width: 720px) {
    .tour-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .tour-toolbar__actions {
        width: 100%;
    }

    .tour-toolbar__actions .button {
        flex: 1 1 220px;
    }
}
