/*
Theme Name: GoLinketchum
Description: Landing page for Golin Ketchum launch
Version: 1.1.1
Author: The Brooklyn Brothers
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--color-white);
    color: var(--color-ash);
    margin: 0;
    overflow-x: hidden;
}

.gk-hero {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
}

.gk-hero__frame {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    border: 1px solid var(--color-forge);
    overflow: hidden;
    display: block;
    isolation: isolate;
}

.gk-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.gk-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.gk-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(var(--color-forge-rgb), 0.12) 0%,
        transparent 35%,
        rgba(var(--color-forge-rgb), 0.45) 100%
    );
}

.gk-hero__ui {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 64px 56px;
    box-sizing: border-box;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.gk-hero__controls {
    align-self: flex-end;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    pointer-events: auto;
}

.gk-hero__btn {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 56px;
    border: 1.25px solid currentColor;
    color: var(--color-ash);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.gk-hero__btn.is-active {
    color: var(--color-flare);
}

.gk-hero__btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.gk-hero__btn:hover:not(.is-active) {
    background: rgba(var(--color-ash-rgb), 0.08);
}

.gk-hero__btn.is-active:hover {
    background: rgba(var(--color-flare-rgb), 0.12);
}

.gk-hero__icon-window {
    width: 36px;
    height: 36px;
    overflow: hidden;
    flex-shrink: 0;
    pointer-events: none;
}

.gk-hero__icon-row {
    display: flex;
    flex-direction: row;
    width: 72px;
    height: 36px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gk-hero__icon-row > svg {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: block;
}

.gk-btn-mute:not(.is-active) .gk-hero__icon-row {
    transform: translateX(0);
}

.gk-btn-mute:not(.is-active):hover .gk-hero__icon-row {
    transform: translateX(-50%);
}

.gk-btn-mute.is-active .gk-hero__icon-row {
    transform: translateX(-50%);
}

.gk-btn-play:not(.is-active) .gk-hero__icon-row {
    transform: translateX(0);
}

.gk-btn-play:not(.is-active):hover .gk-hero__icon-row {
    transform: translateX(-50%);
}

.gk-btn-play.is-active .gk-hero__icon-row {
    transform: translateX(-50%);
}

@media (prefers-reduced-motion: reduce) {
    .gk-hero__icon-row {
        transition: none !important;
    }

    .gk-btn-mute:not(.is-active):hover .gk-hero__icon-row {
        transform: translateX(0) !important;
    }

    .gk-btn-play:not(.is-active):hover .gk-hero__icon-row {
        transform: translateX(0) !important;
    }
}

.gk-hero__copy {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 24px;
    pointer-events: auto;
}

.gk-hero__tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0;
    color: var(--color-ash);
    text-align: left;
    width: 100%;
}

.gk-hero__logo {
    width: 100%;
    max-width: 100%;
}

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

@media (max-width: 768px) {
    .gk-hero__ui {
        padding: 40px 24px 56px;
    }

    .gk-hero__tagline {
        font-size: 28px;
        line-height: 36px;
    }
}
