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

html,
body {
    margin: 0;
    height: 100%;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #c0c0c0;
    background: #121212;
}

.holding-page {
    min-height: 100vh;
    min-height: 100dvh;
    background: #121212;
}

.holding-frame {
    display: grid;
    place-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0;
}

/* Shrink-wraps to the displayed image so % positions track the artwork */
.holding-art-wrap {
    position: relative;
    display: inline-block;
    line-height: 0;
    max-width: 100%;
}

.holding-art {
    display: block;
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100dvh;
    object-fit: 25%;
}

.holding-content {
    position: absolute;
    z-index: 99;
    left: 50%;
    /* STRATACORE sits ~35% up from the image bottom — anchor copy just above it */
    bottom: 38%;
    transform: translateX(-50%);
    width: 70%;
    text-align: center;
    line-height: normal;
    pointer-events: none;
}

.holding-tag {
    margin: 0 0 0.5em;
    font-size: clamp(0.6rem, 1.3vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #e67e22;
}

.holding-title {
    margin: 0 0 0.5em;
    font-size: clamp(1rem, 2.4vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #f0f0f0;
}

.holding-message {
    margin: 0;
    font-size: clamp(0.85rem, 1.7vw, 1.1rem);
    line-height: 1.5;
    color: #bdbdbd;
}

.holding-message em {
    font-style: normal;
    color: #e67e22;
}

.holding-divider {
    width: 2.5em;
    height: 1px;
    margin: 0.55em auto 0;
    background: linear-gradient(90deg, transparent, #c0c0c0, transparent);
    opacity: 0.45;
}
