.landing {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem 3rem;
}

.landing-hero {
    width: min(880px, 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.landing-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.landing-logo {
    width: min(820px, 94vw);
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    opacity: 0.55;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.play-button:hover {
    transform: scale(1.08);
    opacity: 1;
    background: rgba(255, 255, 255, 0.22);
}

.play-button:focus-visible {
    outline: 3px solid var(--text, #ece9df);
    outline-offset: 3px;
}

.landing-tagline {
    color: var(--muted, #b7b3a8);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 52ch;
    margin: 0;
}

.landing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 0.85rem 1.75rem;
    border-radius: 0.7rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    color: #1a1508;
    background: var(--accent, #b8823a);
    transition: transform 0.15s ease, background 0.15s ease;
}

.landing-cta:hover {
    transform: translateY(-2px);
    background: var(--accent-strong, #a06f2f);
}

/* ---- video modal ---- */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.video-modal[hidden] {
    display: none;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.video-modal__content {
    position: relative;
    width: min(880px, 100%);
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 0.9rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.video-modal__close {
    position: absolute;
    top: 0.5rem;
    right: 0.65rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.video-holder,
.video-el {
    width: 100%;
    height: 100%;
}

.video-el {
    object-fit: contain;
    background: #000;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--muted, #b7b3a8);
    text-align: center;
    padding: 1.5rem;
}

.video-placeholder__icon {
    font-size: 2.75rem;
}
