/*
|--------------------------------------------------------------------------
| Scotland Stock
| Main stylesheet
|--------------------------------------------------------------------------
*/


/* ---------------------------------------------------------
   RESET
--------------------------------------------------------- */

.ss-site,
.ss-site *,
.ss-site *::before,
.ss-site *::after {

    box-sizing: border-box;

}


[hidden] {

    display: none !important;

}


html,
body.scotland-stock-page {

    min-height: 100vh;

    background: #F9FAF5;

}


.ss-site {

    margin: 0;
    padding: 0;

    min-height: 0;

    background: #111;
    color: #fff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

}


.ss-site a {

    color: inherit;

    text-decoration: none;

}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.ss-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 76px;

    padding:
        0 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 1000;

    background:
        linear-gradient(
            rgba(0,0,0,0.72),
            rgba(0,0,0,0)
        );

}


.ss-logo {

    font-size: 17px;

    font-weight: 600;

    letter-spacing:
        0.12em;

}


.ss-nav {

    display: flex;

    align-items: center;

    gap: 28px;

    font-size: 13px;

}


.ss-nav button {

    appearance: none;

    border: 0;

    background: none;

    color: inherit;

    padding: 0;

    font: inherit;

    cursor: pointer;

}


.ss-nav a:hover,
.ss-nav button:hover {

    opacity: 0.55;

}


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.ss-hero {

    min-height: 82vh;

    padding:
        76px 18px 18px;

}


.ss-hero-grid {

    height: calc(82vh - 94px);

    min-height: 500px;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    grid-template-rows:
        1fr 1fr;

    gap: 4px;

}


.ss-hero-grid
.ss-clip-card:first-child {

    grid-row:
        1 / 3;

}


/* ---------------------------------------------------------
   FOOTAGE CARD
--------------------------------------------------------- */

.ss-clip-card {

    position: relative;

    display: block;

    overflow: hidden;

    background: #222;

}


.ss-clip-media {

    position: absolute;

    inset: 0;

    overflow: hidden;

}


.ss-clip-media video,
.ss-clip-media img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

}

.ss-no-preview {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #222;

    color: #666;

    font-size: 12px;

    letter-spacing: 0.12em;

    text-transform: uppercase;

}

.ss-clip-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 45%,
            rgba(0,0,0,0.78)
        );

    pointer-events: none;

}


.ss-clip-information {

    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 18px;

    z-index: 5;

}


.ss-clip-title {

    font-size: 16px;

    margin-bottom: 7px;

}


.ss-clip-meta {

    display: flex;

    gap: 12px;

    font-size: 10px;

    letter-spacing:
        0.1em;

    text-transform: uppercase;

    opacity: 0.7;

}


/* ---------------------------------------------------------
   FEATURED
--------------------------------------------------------- */

.ss-section {

    padding:
        70px 25px 100px;

}


.ss-section-heading {

    margin-bottom: 30px;

}


.ss-section-heading h1 {

    margin: 0;

    font-size: 26px;

    font-weight: 400;

}


.ss-footage-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 4px;

}


.ss-footage-grid
.ss-clip-card {

    aspect-ratio:
        16 / 9;

}


/* ---------------------------------------------------------
   SEARCH PANEL
--------------------------------------------------------- */

.ss-search-panel {

    position: fixed;

    top: 0;
    left: 0;
    bottom: 0;

    width: var(--ss-search-width, 360px);

    max-width: 100vw;

    padding: 30px;

    overflow-y: auto;

    z-index: 950;

    background: #F9FAF5;

    transform:
        translateX(-105%);

    visibility: hidden;

    pointer-events: none;

    transition:
        transform 0.35s ease,
        visibility 0s linear 0.35s;

}


.ss-search-panel.is-open {

    transform:
        translateX(0);

    visibility: visible;

    pointer-events: auto;

    transition:
        transform 0.35s ease,
        visibility 0s linear 0s;

}


.ss-search-panel-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 35px;

}


.ss-search-close {

    border: 0;

    background: none;

    color: #fff;

    font-size: 28px;

    cursor: pointer;

}


.ss-search-form input[type="search"] {

    width: 100%;

    padding: 13px;

    background: transparent;

    border: 1px solid #555;

    color: #fff;

}


.ss-filter-group {

    padding:
        20px 0;

    border-bottom:
        1px solid #333;

}


.ss-filter-group h3 {

    margin:
        0 0 15px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing:
        0.12em;

}


.ss-filter-option {

    display: flex;

    gap: 10px;

    margin:
        10px 0;

    font-size: 13px;

    cursor: pointer;

}


.ss-results-button {

    width: 100%;

    padding: 14px;

    margin-top: 25px;

    background: #fff;

    color: #111;

    border: 0;

    cursor: pointer;

}


.ss-search-overlay {

    position: fixed;

    top: var(--ss-header-height, 72px);
    right: 0;
    bottom: 0;
    left: 0;

    z-index: -1;

    background:
        rgba(52, 52, 52, 0.28);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0s linear 0.35s;

}


.ss-search-overlay.is-visible {

    z-index: 900;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transition:
        opacity 0.35s ease,
        visibility 0s linear 0s;

}


/* ---------------------------------------------------------
   CLIP PAGE
--------------------------------------------------------- */

.ss-clip-page {

    padding-top: 76px;

}


.ss-clip-preview {

    width: 100%;

    background: #000;

}


.ss-clip-preview video {

    display: block;

    width: 100%;

    height: auto;

    max-height: 78vh;

    object-fit: contain;

}


.ss-clip-details {

    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(320px, 1fr);

    gap: 50px;

    padding:
        50px 45px 70px;

}


.ss-clip-description h1 {

    margin:
        0 0 12px;

    font-size: 32px;

    font-weight: 400;

    letter-spacing:
        0.02em;

}


.ss-clip-description p {

    max-width: 700px;

    line-height: 1.6;

    color: #bbb;

}


.ss-tech-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        18px 25px;

    margin-top: 35px;

}


.ss-tech-item {

    border-top:
        1px solid #333;

    padding-top: 10px;

}


.ss-tech-label {

    display: block;

    margin-bottom: 5px;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing:
        0.12em;

    color: #777;

}


.ss-tech-value {

    font-size: 13px;

}


/* ---------------------------------------------------------
   PURCHASE
--------------------------------------------------------- */

.ss-purchase {

    padding:
        30px;

    border:
        1px solid #333;

}


.ss-purchase-title {

    margin-bottom: 25px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing:
        0.12em;

}


.ss-option-group {

    margin-bottom: 25px;

}


.ss-option-group h3 {

    margin:
        0 0 10px;

    font-size: 11px;

    font-weight: 500;

    text-transform: uppercase;

}


.ss-options {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.ss-option {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px;

    border:
        1px solid #333;

    cursor: pointer;

}


.ss-option:hover {

    border-color: #777;

}


.ss-price {

    margin:
        25px 0;

    font-size: 28px;

}


.ss-purchase-button {

    width: 100%;

    padding: 15px;

    background: #fff;

    color: #111;

    border: 0;

    cursor: pointer;

}


/* ---------------------------------------------------------
   TAGS
--------------------------------------------------------- */

.ss-tags {

    padding:
        0 45px 70px;

}


.ss-tag {

    display: inline-block;

    margin:
        0 7px 7px 0;

    padding:
        7px 11px;

    border:
        1px solid #333;

    font-size: 11px;

}


/* ---------------------------------------------------------
   SIMILAR CLIPS
--------------------------------------------------------- */

.ss-similar {

    padding:
        70px 25px 100px;

    border-top:
        1px solid #222;

}


.ss-similar-grid {

    display: grid;

    grid-auto-flow: column;

    grid-auto-columns:
        minmax(260px, 1fr);

    gap: 4px;

    overflow-x: auto;

}


.ss-similar-grid
.ss-clip-card {

    aspect-ratio:
        16 / 9;

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 800px) {

    .ss-header {

        padding:
            0 18px;

    }


    .ss-nav a {

        display: none;

    }


    .ss-hero-grid {

        height: auto;

        min-height: 0;

        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            55vh 25vh;

    }


    .ss-hero-grid
    .ss-clip-card:first-child {

        grid-column:
            1 / 3;

        grid-row: 1;

    }


    .ss-footage-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .ss-clip-details {

        grid-template-columns:
            1fr;

        padding:
            35px 20px 50px;

    }


    .ss-tags {

        padding:
            0 20px 50px;

    }

}


@media (max-width: 500px) {

    .ss-footage-grid {

        grid-template-columns:
            1fr;

    }


    .ss-section {

        padding:
            50px 15px 70px;

    }

}

/* =========================================================
   SEARCH RESULTS
   ========================================================= */

.ss-section {
    width: 100%;
    padding: 80px 5vw;
}


.ss-section-heading {
    margin-bottom: 50px;
}


.ss-section-heading h1 {
    margin: 0 0 12px;
}


.ss-section-heading p {
    margin: 6px 0;
}


.ss-footage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


.ss-footage-grid .ss-clip-card {
    display: block;
    text-decoration: none;
}


.ss-footage-grid .ss-clip-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}


.ss-footage-grid .ss-preview-video,
.ss-footage-grid .ss-clip-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


.ss-footage-grid .ss-clip-information {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 20px 18px;
}


.ss-footage-grid .ss-clip-title {
    font-size: 16px;
}


.ss-footage-grid .ss-clip-meta {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.7;
}


@media (
    max-width: 900px
) {

    .ss-footage-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


@media (
    max-width: 600px
) {

    .ss-section {
        padding: 50px 20px;
    }


    .ss-footage-grid {
        grid-template-columns:
            1fr;
    }

}

/* =========================================================
   SINGLE FOOTAGE PAGE
   ========================================================= */

.ss-single-footage {

    background: #F9FAF5;
    color: #343434;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

}


.ss-single-page {

    width: 100%;

    padding:
        112px
        5vw
        80px;

}


/* ---------------------------------------------------------
   MAIN CLIP AREA
   --------------------------------------------------------- */

.ss-clip-detail {

    --ss-clip-sidebar-width: 480px;

    --ss-clip-sidebar-min: 280px;

    --ss-clip-pair-gap: 40px;

    display: flex;

    justify-content: center;

    align-items: start;

    gap: var(--ss-clip-pair-gap);

    width: 100%;

}


.ss-clip-detail .ss-clip-player {

    flex: 0 1 auto;

    width: max-content;

    max-width: calc(100% - var(--ss-clip-sidebar-min) - var(--ss-clip-pair-gap));

    min-width: 0;

}


.ss-clip-detail .ss-clip-sidebar {

    flex: 0 1 var(--ss-clip-sidebar-width);

    width: var(--ss-clip-sidebar-width);

    min-width: var(--ss-clip-sidebar-min);

}


.ss-clip-player {

    position: relative;

    width: 100%;

    line-height: 0;

}


.ss-clip-player-frame {

    position: relative;

    display: inline-block;

    width: max-content;

    max-width: 100%;

    line-height: 0;

    isolation: isolate;

    overflow: visible;

    vertical-align: top;

}

.ss-clip-player-frame video {

    position: relative;

    z-index: 0;

    display: block;

    width: auto;

    max-width: 100%;

    height: auto;

    max-height: 78vh;

}

.ss-clip-player-frame video::-webkit-media-controls,
.ss-clip-player-frame video::-webkit-media-controls-enclosure,
.ss-clip-player-frame video::-webkit-media-controls-overlay-enclosure,
.ss-clip-player-frame video::-webkit-media-controls-start-playback-button,
.ss-clip-player-frame video::-webkit-media-controls-overlay-play-button,
.ss-clip-player-frame video::-webkit-media-controls-panel,
.ss-clip-player-frame video::-webkit-media-controls-overflow-button {

    display: none !important;

    -webkit-appearance: none;

}

.ss-clip-player-frame video {
    pointer-events: none;
}

.ss-player-ui {

    position: absolute;

    inset: 0;

    z-index: 4;

    display: none;

    flex-direction: column;

    justify-content: flex-end;

    overflow: visible;

    pointer-events: none;

    opacity: 0;

    transition: opacity 0.2s ease;

}

.ss-clip-player-frame.ss-player-ready .ss-player-ui {

    display: flex;

}

.ss-clip-player-frame.ss-player-ready:hover .ss-player-ui,
.ss-clip-player-frame.ss-player-ready.is-paused .ss-player-ui,
.ss-clip-player-frame.ss-player-ready:focus-within .ss-player-ui {

    opacity: 1;

}

.ss-player-controls {

    pointer-events: none;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.42) 55%,
        rgba(0, 0, 0, 0) 100%
    );

    padding: 28px 4px 2px;

}

.ss-clip-player-frame.ss-player-ready:hover .ss-player-controls,
.ss-clip-player-frame.ss-player-ready.is-paused .ss-player-controls,
.ss-clip-player-frame.ss-player-ready:focus-within .ss-player-controls {

    pointer-events: auto;

}

.ss-player-progress {

    display: flex;

    align-items: center;

    height: 16px;

    padding: 0 12px;

}

.ss-player-seek {

    -webkit-appearance: none;

    appearance: none;

    width: 100%;

    height: 4px;

    margin: 0;

    border-radius: 2px;

    background: linear-gradient(
        to right,
        #fff var(--ss-seek-pct, 0%),
        rgba(255, 255, 255, 0.32) var(--ss-seek-pct, 0%)
    );

    cursor: pointer;

}

.ss-player-seek::-webkit-slider-thumb {

    -webkit-appearance: none;

    width: 12px;

    height: 12px;

    border: 0;

    border-radius: 50%;

    background: #fff;

    cursor: pointer;

}

.ss-player-seek::-moz-range-thumb {

    width: 12px;

    height: 12px;

    border: 0;

    border-radius: 50%;

    background: #fff;

    cursor: pointer;

}

.ss-player-bar {

    display: flex;

    align-items: center;

    min-height: 48px;

    padding: 0 4px;

    color: #fff;

}

.ss-player-bar-spacer {

    flex: 1 1 auto;

}

.ss-player-time {

    padding: 0 4px 0 2px;

    color: #fff;

    font-size: 13px;

    font-variant-numeric: tabular-nums;

    line-height: 1;

    white-space: nowrap;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);

}

.ss-clip-player-frame .ss-player-btn,
.ss-clip-player-frame a.ss-player-btn {

    position: relative;

    display: inline-flex;

    flex: 0 0 48px;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    margin: 0;

    padding: 0;

    border: 0;

    background: transparent;

    color: #fff;

    cursor: pointer;

    text-decoration: none;

}

.ss-clip-player-frame .ss-player-btn svg {

    display: block;

    width: 24px;

    height: 24px;

    flex: 0 0 24px;

}

.ss-player-btn:hover,
.ss-player-btn:focus-visible {

    color: #fff;

    opacity: 0.88;

}

.ss-clip-player-frame .ss-player-btn .ss-player-icon-play,
.ss-clip-player-frame .ss-player-btn .ss-player-icon-muted,
.ss-clip-player-frame .ss-player-btn .ss-player-icon-exit-fs {

    display: none;

}

.ss-clip-player-frame.is-paused .ss-player-btn .ss-player-icon-play {

    display: block;

}

.ss-clip-player-frame.is-paused .ss-player-btn .ss-player-icon-pause {

    display: none;

}

.ss-clip-player-frame.is-muted .ss-player-btn .ss-player-icon-muted {

    display: block;

}

.ss-clip-player-frame.is-muted .ss-player-btn .ss-player-icon-volume {

    display: none;

}

.ss-clip-player-frame.is-fullscreen .ss-player-btn .ss-player-icon-exit-fs {

    display: block;

}

.ss-clip-player-frame.is-fullscreen .ss-player-btn .ss-player-icon-enter-fs {

    display: none;

}

.ss-player-volume {

    position: relative;

    display: flex;

    flex: 0 0 48px;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

}

.ss-player-volume-panel {

    position: absolute;

    left: 50%;

    bottom: calc(100% - 6px);

    z-index: 6;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;

    height: 120px;

    padding: 14px 0 18px;

    background: rgba(28, 28, 28, 0.92);

    border-radius: 4px;

    opacity: 0;

    pointer-events: none;

    transform: translateX(-50%);

    transition: opacity 0.15s ease;

}

.ss-player-volume:hover .ss-player-volume-panel,
.ss-player-volume:focus-within .ss-player-volume-panel {

    opacity: 1;

    pointer-events: auto;

}

.ss-player-volume-slider {

    -webkit-appearance: none;

    appearance: none;

    width: 88px;

    height: 4px;

    margin: 0;

    border-radius: 2px;

    background: linear-gradient(
        to right,
        #fff var(--ss-vol-pct, 0%),
        rgba(255, 255, 255, 0.32) var(--ss-vol-pct, 0%)
    );

    transform: rotate(-90deg);

    cursor: pointer;

}

.ss-player-volume-slider::-webkit-slider-thumb {

    -webkit-appearance: none;

    width: 12px;

    height: 12px;

    border: 0;

    border-radius: 50%;

    background: #fff;

    cursor: pointer;

}

.ss-player-volume-slider::-moz-range-thumb {

    width: 12px;

    height: 12px;

    border: 0;

    border-radius: 50%;

    background: #fff;

    cursor: pointer;

}

.ss-player-btn[data-tooltip]::after {

    content: attr(data-tooltip);

    position: absolute;

    left: 50%;

    bottom: calc(100% + 6px);

    padding: 5px 8px;

    background: rgba(32, 32, 32, 0.92);

    color: #fff;

    font-size: 12px;

    font-weight: 400;

    letter-spacing: 0.01em;

    line-height: 1.2;

    white-space: nowrap;

    border-radius: 4px;

    opacity: 0;

    pointer-events: none;

    transform: translate(-50%, 4px);

    transition: opacity 0.15s ease, transform 0.15s ease;

}

.ss-player-btn[data-tooltip]:hover::after,
.ss-player-btn[data-tooltip]:focus-visible::after {

    opacity: 1;

    transform: translate(-50%, 0);

}

.ss-clip-player-frame:fullscreen,
.ss-clip-player-frame:-webkit-full-screen,
.ss-clip-player-frame.is-fullscreen {

    display: flex;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;

    width: 100%;

    max-width: none;

    height: 100%;

    background: #000;

    overflow: hidden;

}

.ss-clip-player-frame:fullscreen video,
.ss-clip-player-frame:-webkit-full-screen video,
.ss-clip-player-frame.is-fullscreen video {

    width: 100% !important;

    height: 100% !important;

    max-width: none !important;

    max-height: none !important;

    margin: 0;

    aspect-ratio: auto !important;

    object-fit: contain;

}

@media (hover: none) {

    .ss-clip-player-frame.ss-player-ready .ss-player-ui {

        opacity: 1;

    }

    .ss-clip-player-frame.ss-player-ready .ss-player-controls {

        pointer-events: auto;

    }

    .ss-player-btn[data-tooltip]::after {

        display: none;

    }

}


.ss-single-footage .ss-clip-player {

    background: var(--ss-background);

}


.ss-single-footage .ss-clip-player video,
.ss-single-footage .ss-main-preview-video,
.ss-single-footage .ss-main-preview-image {

    display: block;

    width: auto;

    max-width: 100%;

    height: auto;

    max-height: 78vh;

    margin: 0;

    aspect-ratio: var(--ss-player-ratio, auto);

    background: transparent;

}


.ss-single-footage .ss-clip-player-frame:fullscreen video,
.ss-single-footage .ss-clip-player-frame:-webkit-full-screen video,
.ss-single-footage .ss-clip-player-frame.is-fullscreen video {

    width: 100% !important;

    height: 100% !important;

    max-width: none !important;

    max-height: none !important;

    aspect-ratio: auto !important;

    object-fit: contain;

}


.ss-clip-player video {

    display: block;

    width: 100%;

    height: auto;

    max-height: 78vh;

    object-fit: contain;

}


.ss-main-preview {

    display: block;

    width: 100%;

    height: auto;

    max-height: 78vh;

    object-fit: contain;

    background: #343434;

}

.ss-main-preview-image {

    display: block;

    width: 100%;

    height: auto;

    max-height: 78vh;

    object-fit: contain;

    background: #343434;

}


.ss-main-preview-placeholder {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #F9FAF5;

    font-size: 13px;

    letter-spacing:
        0.08em;

}


/* ---------------------------------------------------------
   CLIP SIDEBAR
   --------------------------------------------------------- */

.ss-clip-sidebar {

    padding: 0;

}


.ss-clip-sidebar-body {

    min-height: 0;

}


.ss-clip-heading h1 {

    margin: 0;

    font-size:
        clamp(
            25px,
            2.4vw,
            36px
        );

    line-height:
        1.05;

    font-weight:
        500;

    letter-spacing:
        -0.025em;

}


.ss-clip-description {

    max-width:
        480px;

    margin:
        12px 0 0;

    font-size:
        14px;

    line-height:
        1.45;

    opacity:
        0.7;

}


/* ---------------------------------------------------------
   INFORMATION BLOCKS
   --------------------------------------------------------- */

.ss-clip-information-block {

    margin-top:
        18px;

    padding-top:
        12px;

    border-top:
        1px solid
        rgba(
            52,
            52,
            52,
            0.16
        );

}


.ss-clip-information-block h2 {

    margin:
        0 0 8px;

    font-size:
        10px;

    font-weight:
        600;

    text-transform:
        uppercase;

    letter-spacing:
        0.1em;

    opacity:
        0.6;

}


.ss-clip-information-block dl {

    margin:
        0;

}


.ss-tech-row {

    display:
        flex;

    justify-content:
        space-between;

    gap:
        20px;

    padding:
        1px 0;

    font-size:
        13px;

    line-height:
        1.25;

}


.ss-tech-row dt {

    opacity:
        0.5;

}


.ss-tech-row dd {

    margin:
        0;

    text-align:
        right;

}


/* ---------------------------------------------------------
   LICENCE / DOWNLOAD
   --------------------------------------------------------- */

.ss-clip-options-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px 20px;

    align-items: start;

    margin-top: 18px;

    padding-top: 12px;

    border-top: 1px solid rgba(52, 52, 52, 0.16);

}


.ss-clip-options-row .ss-clip-information-block {

    margin-top: 0;

    padding-top: 0;

    border-top: 0;

}


.ss-clip-options-row .ss-licence-options,
.ss-clip-options-row .ss-download-options {

    flex-wrap: nowrap;

}

.ss-licence-options,
.ss-download-options {

    display:
        flex;

    gap:
        6px;

    flex-wrap:
        wrap;

}


.ss-licence-option,
.ss-download-option {

    position:
        relative;

    appearance:
        none;

    border:
        1px solid
        rgba(
            52,
            52,
            52,
            0.25
        );

    background:
        transparent;

    color:
        #343434;

    padding:
        8px 12px;

    cursor:
        pointer;

    font:
        inherit;

    font-size:
        12px;

    transition:
        background
        0.2s
        ease,

        color
        0.2s
        ease,

        border-color
        0.2s
        ease;

}


.ss-licence-option:hover,
.ss-download-option:hover,
.ss-licence-option.is-active,
.ss-download-option.is-active {

    background:
        #343434;

    border-color:
        #343434;

    color:
        #F9FAF5;

}


.ss-licence-details-link {

    display: inline-block;

    margin-top: 12px;

    font-size: 12px;

    line-height: 1.4;

    text-decoration: underline;

    text-underline-offset: 3px;

    opacity: 0.62;

}


.ss-licence-details-link:hover {

    opacity: 1;

}

.ss-download-option[data-tooltip]::after,
.ss-licence-option[data-tooltip]::after,
.ss-quick-add-option[data-tooltip]::after {

    content: attr(data-tooltip);

    position: absolute;

    left: 50%;

    bottom: calc(100% + 8px);

    z-index: 3;

    padding: 6px 8px;

    background: rgba(52, 52, 52, 0.92);

    color: #F9FAF5;

    font-size: 11px;

    line-height: 1.2;

    letter-spacing: 0.02em;

    white-space: nowrap;

    opacity: 0;

    pointer-events: none;

    transform: translate(-50%, 4px);

    transition: opacity 0.18s ease, transform 0.18s ease;

}

.ss-licence-option[data-tooltip]::after,
.ss-quick-add-option[data-licence][data-tooltip]::after {

    white-space: normal;

    width: max-content;

    max-width: 220px;

    text-align: center;

    line-height: 1.35;

}

.ss-download-option[data-tooltip]:hover::after,
.ss-download-option[data-tooltip]:focus-visible::after,
.ss-licence-option[data-tooltip]:hover::after,
.ss-licence-option[data-tooltip]:focus-visible::after,
.ss-quick-add-option[data-tooltip]:hover::after,
.ss-quick-add-option[data-tooltip]:focus-visible::after {

    opacity: 1;

    transform: translate(-50%, 0);

}

@media (hover: none) {

    .ss-download-option[data-tooltip]::after,
    .ss-licence-option[data-tooltip]::after,
    .ss-quick-add-option[data-tooltip]::after {

        display: none;

    }

}


/* ---------------------------------------------------------
   PURCHASE
   --------------------------------------------------------- */

.ss-purchase {

    margin-top:
        25px;

    padding-top:
        17px;

    border-top:
        1px solid
        rgba(
            52,
            52,
            52,
            0.16
        );

}


.ss-price {

    margin-bottom:
        10px;

    font-size:
        23px;

    font-weight:
        500;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 2px;

}


.ss-price-fx {

    font-size: 12px;

    font-weight: 400;

    letter-spacing: 0.01em;

    opacity: 0.62;

}


.ss-purchase-button {

    width:
        100%;

    border:
        0;

    background:
        #343434;

    color:
        #F9FAF5;

    padding:
        13px 18px;

    font:
        inherit;

    font-size:
        12px;

    cursor:
        pointer;

    transition:
        opacity
        0.2s
        ease;

}


.ss-purchase-button:hover {

    opacity:
        0.78;

}


/* ---------------------------------------------------------
   TAGS
   --------------------------------------------------------- */

.ss-clip-tags {

    margin-top:
        45px;

    padding-top:
        18px;

    border-top:
        1px solid
        rgba(
            52,
            52,
            52,
            0.16
        );

}


.ss-clip-tags h2 {

    margin:
        0 0 12px;

    font-size:
        10px;

    text-transform:
        uppercase;

    letter-spacing:
        0.1em;

    opacity:
        0.6;

}


.ss-clip-tags .ss-tags {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        6px;

    padding:
        0;

    margin:
        0;

}


.ss-clip-tags .ss-tag {

    margin:
        0;

}


.ss-tag {

    padding:
        6px 10px;

    border:
        1px solid
        rgba(
            52,
            52,
            52,
            0.18
        );

    font-size:
        12px;

}


/* ---------------------------------------------------------
   SIMILAR CLIPS
   --------------------------------------------------------- */

.ss-similar-clips {

    margin-top:
        55px;

}


.ss-similar-clips
.ss-section-heading {

    margin-bottom:
        22px;

}


.ss-similar-clips
.ss-section-heading h2 {

    margin:
        0;

    font-size:
        22px;

    font-weight:
        500;

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (
    max-width: 900px
) {

    .ss-single-page {

        padding:
            89px
            25px
            65px;

    }


    .ss-clip-detail {

        flex-direction: column;

        gap:
            28px;

        align-items: stretch;

    }


    .ss-clip-detail .ss-clip-player,
    .ss-clip-detail .ss-clip-sidebar {

        width: 100%;

        max-width: 100%;

    }


    .ss-clip-heading h1 {

        font-size:
            31px;

    }


    .ss-clip-information-block {

        margin-top:
            24px;

    }


    .ss-clip-tags {

        margin-top:
            40px;

    }


    .ss-similar-clips {

        margin-top:
            45px;

    }

}


@media (
    max-width: 600px
) {

    .ss-single-page {

        padding:
            79px
            15px
            50px;

    }


    /*
    |--------------------------------------------------------------------------
    | Do NOT force the player to 16:9.
    |
    | The video must determine its own aspect ratio.
    | This allows square, 4:3, portrait, 2:1 etc.
    | footage to display correctly.
    |--------------------------------------------------------------------------
    */

    .ss-clip-player {

        aspect-ratio:
            auto;

    }


    .ss-clip-heading h1 {

        font-size:
            27px;

    }



    .ss-clip-description {

        font-size:
            13px;

    }


    .ss-tech-row {

        font-size:
            12px;

    }


    .ss-licence-option,
    .ss-download-option {

        flex:
            1 1 auto;

        text-align:
            center;

    }


    .ss-similar-clips
    .ss-footage-grid {

        grid-template-columns:
            1fr;

    }

}

/* =========================================================
   SCOTLAND STOCK â€” GLOBAL VISUAL SYSTEM
   ========================================================= */

:root {

    --ss-background: #F9FAF5;
    --ss-dark: #343434;

}


/* ---------------------------------------------------------
   GLOBAL SITE
   --------------------------------------------------------- */

.ss-site {

    background:
        var(--ss-background);

    color:
        var(--ss-dark);

}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.ss-header {

    color:
        var(--ss-dark);

}


.ss-logo {

    color:
        var(--ss-dark);

}


.ss-nav {

    color:
        var(--ss-dark);

}


.ss-nav button {

    color:
        var(--ss-dark);

}


/* ---------------------------------------------------------
   SEARCH
   --------------------------------------------------------- */

.ss-search-panel {

    background:
        var(--ss-background);

    color:
        var(--ss-dark);

}


.ss-search-close {

    color:
        var(--ss-dark);

}


.ss-search-form input[type="search"] {

    color:
        var(--ss-dark);

    border-color:
        rgba(
            52,
            52,
            52,
            0.35
        );

}


.ss-filter-group {

    border-color:
        rgba(
            52,
            52,
            52,
            0.16
        );

}


.ss-results-button {

    background:
        var(--ss-dark);

    color:
        var(--ss-background);

}


/* ---------------------------------------------------------
   GENERAL CONTENT
   --------------------------------------------------------- */

.ss-section,
.ss-single-page {

    background:
        var(--ss-background);

    color:
        var(--ss-dark);

}


/* ---------------------------------------------------------
   CLIP CARDS
   --------------------------------------------------------- */

.ss-clip-card {

    background:
        var(--ss-dark);

}


.ss-no-preview {

    background:
        var(--ss-dark);

    color:
        rgba(
            249,
            250,
            245,
            0.55
        );

}


/* ---------------------------------------------------------
   SINGLE CLIP
   --------------------------------------------------------- */

.ss-single-footage {

    background:
        var(--ss-background);

    color:
        var(--ss-dark);

}


.ss-single-footage .ss-site {

    background:
        var(--ss-background);

    color:
        var(--ss-dark);

}


.ss-single-footage .ss-main-preview,
.ss-single-footage .ss-main-preview-image {

    background:
        transparent;

}


/* ---------------------------------------------------------
   TEXT
   --------------------------------------------------------- */

.ss-single-footage
.ss-clip-description {

    color:
        var(--ss-dark);

}


.ss-single-footage
.ss-clip-information-block {

    border-color:
        rgba(
            52,
            52,
            52,
            0.16
        );

}


/* ---------------------------------------------------------
   SIMILAR CLIPS
   --------------------------------------------------------- */

.ss-similar-clips {

    background:
        var(--ss-background);

    color:
        var(--ss-dark);

}

/* =========================================================
   SCOTLAND STOCK â€” HEADER
   ========================================================= */

.ss-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 72px;

    padding:
        0 38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    z-index:
        1000;

    background:
        rgba(
            249,
            250,
            245,
            0.96
        );

    color:
        #343434;

    border-bottom:
        1px solid
        rgba(
            52,
            52,
            52,
            0.10
        );

    backdrop-filter:
        blur(8px);

}


/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */

.ss-logo {

    display:
        flex;

    align-items:
        center;

    color:
        #343434;

    font-size:
        15px;

    font-weight:
        600;

    letter-spacing:
        0.14em;

    white-space:
        nowrap;

}


/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.ss-nav {

    display:
        flex;

    align-items:
        center;

    gap:
        30px;

    color:
        #343434;

    font-size:
        12px;

    letter-spacing:
        0.02em;

}


.ss-nav a,
.ss-nav button {

    position:
        relative;

    color:
        #343434;

    text-decoration:
        none;

    transition:
        opacity
        0.2s ease;

}


.ss-nav a::after,
.ss-nav button::after {

    content:
        "";

    position:
        absolute;

    left:
        0;

    right:
        0;

    bottom:
        -5px;

    height:
        1px;

    background:
        #343434;

    transform:
        scaleX(0);

    transform-origin:
        right;

    transition:
        transform
        0.25s ease;

}


.ss-nav a:hover,
.ss-nav button:hover {

    opacity:
        1;

}


.ss-nav a:hover::after,
.ss-nav button:hover::after {

    transform:
        scaleX(1);

    transform-origin:
        left;

}


/* ---------------------------------------------------------
   SEARCH BUTTON
   --------------------------------------------------------- */

.ss-nav button {

    appearance:
        none;

    border:
        0;

    background:
        transparent;

    padding:
        0;

    font:
        inherit;

    cursor:
        pointer;

}


/* ---------------------------------------------------------
   MOBILE HEADER
   --------------------------------------------------------- */

@media (
    max-width: 800px
) {

    .ss-header {

        height:
            64px;

        padding:
            0 18px;

    }


    .ss-logo {

        font-size:
            13px;

    }


    .ss-nav {

        gap:
            18px;

        font-size:
            11px;

    }


}

/* =========================================================
   HEADER â€” SEARCH VERSION
   ========================================================= */

.ss-header {

    height: 76px;

    padding:
        0 38px;

    display:
        flex;

    align-items:
        center;

    gap:
        38px;

    background:
        rgba(
            249,
            250,
            245,
            0.96
        );

    color:
        #343434;

    border-bottom:
        1px solid
        rgba(
            52,
            52,
            52,
            0.10
        );

}


/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */

.ss-logo {

    flex:
        0 0 auto;

    color:
        #343434;

    font-size:
        17px;

    font-weight:
        600;

    letter-spacing:
        0.12em;

    white-space:
        nowrap;

}


/* ---------------------------------------------------------
   HEADER SEARCH
   --------------------------------------------------------- */

.ss-header-search {

    appearance:
        none;

    flex:
        1 1 auto;

    max-width:
        480px;

    height:
        38px;

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    padding:
        0 14px;

    border:
        1px solid
        rgba(
            52,
            52,
            52,
            0.22
        );

    background:
        transparent;

    color:
        #343434;

    font:
        inherit;

    text-align:
        left;

    cursor:
        pointer;

    transition:
        border-color
        0.2s ease,

        background
        0.2s ease;

}


.ss-header-search:hover {

    border-color:
        rgba(
            52,
            52,
            52,
            0.55
        );

    background:
        rgba(
            52,
            52,
            52,
            0.025
        );

}


/* ---------------------------------------------------------
   SEARCH ICON
   --------------------------------------------------------- */

.ss-header-search-icon {

    width:
        17px;

    height:
        17px;

    display:
        flex;

    flex:
        0 0 auto;

}


.ss-header-search-icon svg {

    width:
        100%;

    height:
        100%;

    fill:
        none;

    stroke:
        #343434;

    stroke-width:
        1.5;

    stroke-linecap:
        round;

}


/* ---------------------------------------------------------
   SEARCH PLACEHOLDER
   --------------------------------------------------------- */

.ss-header-search-placeholder {

    font-size:
        12px;

    letter-spacing:
        0.01em;

    opacity:
        0.52;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

}


/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.ss-nav {

    display:
        flex;

    align-items:
        center;

    gap:
        27px;

    margin-left:
        0;

    font-size:
        13px;

}


.ss-nav-link {

    position:
        relative;

    padding:
        7px 0;

    color:
        #343434;

    text-decoration:
        none;

    white-space:
        nowrap;

}


/* ---------------------------------------------------------
   NAV HOVER
   --------------------------------------------------------- */

.ss-nav-link::after {

    content:
        "";

    position:
        absolute;

    left:
        0;

    right:
        0;

    bottom:
        0;

    height:
        1px;

    background:
        #343434;

    transform:
        scaleX(0);

    transform-origin:
        right;

    transition:
        transform
        0.25s ease;

}


.ss-nav-link:hover::after {

    transform:
        scaleX(1);

    transform-origin:
        left;

}


/* ---------------------------------------------------------
   ACTIVE NAVIGATION
   --------------------------------------------------------- */

.ss-nav-link.is-active::after {

    transform:
        scaleX(1);

    transform-origin:
        left;

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (
    max-width: 1000px
) {

    .ss-header {

        gap:
            20px;

        padding:
            0 22px;

    }


    .ss-header-search {

        max-width:
            none;

    }


    .ss-nav {

        gap:
            18px;

    }

}


@media (
    max-width: 800px
) {

    .ss-header {

        height:
            64px;

        padding:
            0 18px;

    }


    .ss-logo {

        font-size:
            13px;

    }


    .ss-header-search {

        flex:
            1 1 auto;

        height:
            34px;

    }


    .ss-header-search-placeholder {

        font-size:
            11px;

    }


    .ss-nav {

        gap:
            14px;

    }

}


@media (
    max-width: 500px
) {

    .ss-header {

        gap:
            12px;

    }


    .ss-logo {

        font-size:
            11px;

        letter-spacing:
            0.09em;

    }


    .ss-header-search {

        max-width:
            none;

    }


    .ss-header-search-placeholder {

        overflow:
            hidden;

        white-space:
            nowrap;

        text-overflow:
            ellipsis;

    }

}

/* =========================================================
   HEADER SEARCH â€” CLEAN INPUT
   ========================================================= */

.ss-header .ss-header-search {

    flex: 0 1 480px;

    height: 38px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 0 14px;

    border: 1px solid rgba(52, 52, 52, 0.22);

    background: transparent;

    color: #343434;

    cursor: text;

}


.ss-header .ss-header-search:focus-within {

    border-color: #343434;

    background: rgba(52, 52, 52, 0.025);

}


/* Search icon */

.ss-header .ss-header-search-icon {

    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    display: flex;

}


.ss-header .ss-header-search-icon svg {

    width: 100%;
    height: 100%;

    fill: none;

    stroke: #343434;

    stroke-width: 1.5;

    stroke-linecap: round;

}


/* Actual search input */

.ss-header .ss-header-search-input {

    flex: 1 1 auto;

    width: 100%;
    min-width: 0;

    height: 100%;

    margin: 0;
    padding: 0;

    border: 0 !important;
    outline: none !important;

    background: transparent !important;

    color: #343434;

    font-family: inherit;

    font-size: 12px;

    line-height: 1;

    box-shadow: none !important;

    appearance: none;

}


/* Placeholder */

.ss-header .ss-header-search-input::placeholder {

    color: #343434;

    opacity: 0.52;

}


.ss-header .ss-header-search-input:focus::placeholder {

    opacity: 0;

}


/* Remove browser search decorations */

.ss-header .ss-header-search-input::-webkit-search-decoration,
.ss-header .ss-header-search-input::-webkit-search-cancel-button,
.ss-header .ss-header-search-input::-webkit-search-results-button,
.ss-header .ss-header-search-input::-webkit-search-results-decoration {

    -webkit-appearance: none;

    appearance: none;

}

/* =========================================================
   SEARCH FILTER ACCORDIONS
   ========================================================= */

.ss-filter-group {

    border-bottom:
        1px solid
        rgba(52, 52, 52, 0.14);

    padding: 0;

}


.ss-filter-toggle {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 18px 0;

    border: 0;

    background: transparent;

    color: #343434;

    font-family: inherit;

    font-size: 11px;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    cursor: pointer;

}


.ss-filter-plus {

    font-size: 18px;

    font-weight: 300;

    line-height: 1;

    transition:
        transform 0.38s ease;

}


.ss-filter-group.is-open
.ss-filter-plus {

    transform:
        rotate(45deg);

}


.ss-filter-options {

    display: grid;

    grid-template-rows: 0fr;

    pointer-events: none;

    transition:
        grid-template-rows 0.48s cubic-bezier(0.22, 1, 0.36, 1);

}


.ss-filter-group.is-open
.ss-filter-options {

    grid-template-rows: 1fr;

    pointer-events: auto;

}


.ss-filter-options-inner {

    overflow: hidden;

    min-height: 0;

    padding: 0;

    opacity: 0;

    transform: translateY(-8px);

    visibility: hidden;

    transition:
        opacity 0.38s ease,
        transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.46s;

}


.ss-filter-group.is-open
.ss-filter-options-inner {

    opacity: 1;

    transform: none;

    visibility: visible;

    padding-bottom: 15px;

    transition:
        opacity 0.38s ease,
        transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0s;

}


.ss-filter-option {

    display: flex;

    align-items: center;

    gap: 10px;

    margin: 0;

    padding: 7px 0;

    font-size: 13px;

    cursor: pointer;

}


/* Elegant checkbox */

.ss-filter-option input[type="checkbox"] {

    appearance: none;

    -webkit-appearance: none;

    width: 15px;
    height: 15px;

    flex: 0 0 15px;

    margin: 0;

    border:
        1px solid
        rgba(52, 52, 52, 0.35);

    background: transparent;

    cursor: pointer;

    position: relative;

}


.ss-filter-option
input[type="checkbox"]:checked {

    background: #343434;

    border-color: #343434;

}


.ss-filter-option
input[type="checkbox"]:checked::after {

    content: "";

    position: absolute;

    left: 4px;
    top: 1px;

    width: 4px;
    height: 8px;

    border:
        solid
        #F9FAF5;

    border-width:
        0 1.5px 1.5px 0;

    transform:
        rotate(45deg);

}

/* Header search - prevent old form styling leaking into input */

.ss-header .ss-header-search-input {

    border: 0 !important;

    outline: none !important;

    box-shadow: none !important;

    background: transparent !important;

}

/* =========================================================
   SEARCH — DRAWER (base; refined later in file)
   ========================================================= */

.ss-search-panel {

    position: fixed;

    top: 0;
    left: 0;
    bottom: 0;

    width: var(--ss-search-width, 360px);

    max-width: 100vw;

    z-index: 950;

    overflow-y: auto;

    background: var(--ss-background, #F9FAF5);

    color: #343434;

    border-right:
        1px solid
        rgba(52, 52, 52, 0.12);

    transform: translateX(-105%);

    visibility: hidden;

    pointer-events: none;

    transition:
        transform 0.35s ease,
        visibility 0s linear 0.35s;

}


.ss-search-panel.is-open {

    transform: translateX(0);

    visibility: visible;

    pointer-events: auto;

    transition:
        transform 0.35s ease,
        visibility 0s linear 0s;

}


.ss-site {

    transition:
        transform 0.35s ease;

}


body.ss-search-is-open .ss-site {

    transform:
        translateX(
            var(--ss-search-width, 360px)
        );

}


.ss-search-overlay {

    position: fixed;

    top: var(--ss-header-height, 72px);
    right: 0;
    bottom: 0;
    left: 0;

    z-index: -1;

    background:
        rgba(52, 52, 52, 0.28);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0s linear 0.35s;

}


.ss-search-overlay.is-visible {

    z-index: 900;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transition:
        opacity 0.35s ease,
        visibility 0s linear 0s;

}
/* ---------------------------------------------------------
   HEADER SEARCH
--------------------------------------------------------- */

.ss-header-search {

    appearance: none;
    -webkit-appearance: none;

    border:
        1px solid
        rgba(52, 52, 52, 0.22);

    background: transparent;

    color: #343434;

    font: inherit;

    cursor: pointer;

}


.ss-header-search:focus {

    outline: none;

}


.ss-header-search:focus-visible {

    outline:
        1px solid
        #343434;

    outline-offset:
        3px;

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 900px) {

    body.ss-search-is-open .ss-site {

        transform:
            translateX(0);

    }

}

/* =========================================================
   COLLECTIONS
   ========================================================= */

.ss-collections-section {

    overflow: hidden;

}


.ss-collections-section
.ss-section-heading {

    display: flex;

    align-items: baseline;

    justify-content: space-between;

    gap: 30px;

}


.ss-section-link {

    font-size: 11px;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    opacity: 0.55;

    transition:
        opacity 0.2s ease;

}


.ss-section-link:hover {

    opacity: 1;

}


/* ---------------------------------------------------------
   CAROUSEL
--------------------------------------------------------- */

.ss-collections-carousel {

    display: grid;

    grid-auto-flow: column;

    grid-auto-columns:
        minmax(
            320px,
            30vw
        );

    gap: 5px;

    overflow-x: auto;

    overflow-y: hidden;

    padding-bottom: 12px;

    scrollbar-width: thin;

    scrollbar-color:
        rgba(52,52,52,0.25)
        transparent;

}


.ss-collections-carousel::-webkit-scrollbar {

    height: 5px;

}


.ss-collections-carousel::-webkit-scrollbar-track {

    background: transparent;

}


.ss-collections-carousel::-webkit-scrollbar-thumb {

    background:
        rgba(52,52,52,0.25);

}


/* ---------------------------------------------------------
   COLLECTION CARD
--------------------------------------------------------- */

.ss-collection-card {

    display: block;

}


.ss-collection-card-media {

    position: relative;

    aspect-ratio:
        16 / 9;

    overflow: hidden;

    background: #343434;

}


.ss-collection-preview,
.ss-collection-preview-image {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;

}

.ss-collection-preview {
    pointer-events: none;
}


.ss-collection-card-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 35%,
            rgba(0,0,0,0.72)
        );

    pointer-events: none;

}


.ss-collection-card-information {

    position: absolute;

    left: 20px;

    right: 20px;

    bottom: 17px;

    color: #F9FAF5;

}


.ss-collection-card-title {

    font-size: 19px;

    line-height: 1.1;

    margin-bottom: 7px;

}


.ss-collection-card-count {

    font-size: 10px;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    opacity: 0.65;

}


.ss-collection-card:hover
.ss-collection-preview,
.ss-collection-card:hover
.ss-collection-preview-image {

    transform: scale(1.035);

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 800px) {

    .ss-collections-carousel {

        grid-auto-columns:
            minmax(
                270px,
                75vw
            );

    }


    .ss-collection-card-title {

        font-size: 17px;

    }

}

/* =========================================================
   COLLECTIONS PAGE
   ========================================================= */

.ss-section.ss-collections-page {

    padding: 79px 0 80px;

}


.ss-collections-heading {

    position: absolute;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;

}


.ss-collections-grid {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 3px;

    width: 100%;

}


@keyframes ss-collections-fade {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes ss-collections-scale {

    from {
        transform: scale(0.97);
    }

    to {
        transform: scale(1);
    }

}


.ss-collections-page .ss-collection-card {

    position: relative;

    display: block;

    min-width: 0;

    color: inherit;

    text-decoration: none;

    animation:
        ss-collections-fade 2.05s cubic-bezier(0.42, 0, 0.18, 1) both,
        ss-collections-scale 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;

    animation-delay: var(--ss-enter-delay, 0s);

    transform-origin: center center;

}


.ss-collections-page .ss-collection-card-media {

    position: relative;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #343434;

}


.ss-collections-page .ss-collection-card-overlay {

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.00) 52%
        );

}


.ss-collections-page .ss-collection-card-information {

    left: 14px;

    right: 46px;

    bottom: 13px;

}


.ss-collections-page .ss-collection-card-title {

    font-size: 15px;

    font-weight: 500;

    line-height: 1.2;

    margin-bottom: 5px;

}


.ss-collections-page .ss-collection-card-count {

    font-size: 10px;

}


.ss-collection-card-icon {

    position: absolute;

    right: 10px;

    bottom: 10px;

    z-index: 3;

    width: 24px;

    height: 28px;

    pointer-events: none;

}


.ss-collection-card-icon span {

    position: absolute;

    width: 13px;

    height: 17px;

    border-radius: 2px;

    background: rgba(255, 255, 255, 0.16);

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);

}


.ss-collection-card-icon span:nth-child(1) {

    top: 0;

    right: 0;

}


.ss-collection-card-icon span:nth-child(2) {

    top: 5px;

    right: 5px;

}


.ss-collection-card-icon span:nth-child(3) {

    top: 10px;

    right: 10px;

}


.ss-collection-card:hover
.ss-collection-card-icon span {

    background: rgba(255, 255, 255, 0.24);

}


@media (max-width: 900px) {

    .ss-collections-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }

}


@media (max-width: 560px) {

    .ss-collections-grid {

        grid-template-columns: 1fr;

        gap: 3px;

    }

    .ss-collections-page .ss-collection-card-title {

        font-size: 16px;

    }

}


@media (prefers-reduced-motion: reduce) {

    .ss-collections-page .ss-collection-card {

        animation: none;

        opacity: 1;

        transform: none;

    }

}


/* =========================================================
   ABOUT PAGE
   ========================================================= */

.ss-section.ss-about-page {

    padding: 118px 6vw 96px;

    overflow-x: hidden;

}


.ss-about-layout {

    display: grid;

    grid-template-columns:
        minmax(240px, 0.84fr)
        minmax(280px, 1.16fr);

    gap: 72px;

    align-items: start;

    max-width: 1180px;

    margin: 0 auto;

}


.ss-about-portrait {

    margin: 0;

    position: sticky;

    top: 108px;

}


.ss-about-portrait img {

    display: block;

    width: 100%;

    height: auto;

    box-shadow:
        0 18px 40px rgba(52, 52, 52, 0.12);

}


.ss-about-heading {

    position: absolute;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;

}


.ss-about-copy p {

    margin: 0 0 20px;

    max-width: 38em;

    font-family: inherit;

    font-size: 16px;

    font-weight: 400;

    font-style: normal;

    line-height: 1.7;

    letter-spacing: normal;

    color: inherit;

}


.ss-about-copy a:not(.ss-about-button) {

    text-decoration: underline;

    text-underline-offset: 3px;

}


.ss-about-copy a:not(.ss-about-button):hover {

    opacity: 0.62;

}


.ss-about-copy blockquote,
.ss-about-copy .wp-block-quote {

    margin: 28px 0;

    padding: 0 0 0 18px;

    border: 0;

    border-left: 1px solid rgba(52, 52, 52, 0.28);

    max-width: 34em;

    font-size: 18px;

    line-height: 1.5;

    font-style: italic;

    box-shadow: none;

    background: transparent;

}


.ss-about-copy blockquote p,
.ss-about-copy .wp-block-quote p {

    margin: 0;

    max-width: none;

    font-size: 18px;

    font-style: italic;

    line-height: 1.5;

}


.ss-about-copy .ss-about-button-wrap {

    margin: 32px 0 40px;

}


.ss-about-copy .ss-about-button-wrap .ss-about-button {

    margin-top: 0;

}


.ss-site a.ss-about-button {

    display: inline-block;

    margin-top: 10px;

    padding: 11px 16px;

    border: 1px solid var(--ss-dark);

    background: var(--ss-dark);

    color: var(--ss-background);

    font-size: 11px;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;

}


.ss-site a.ss-about-button:hover {

    background: transparent;

    color: var(--ss-dark);

    border-color: var(--ss-dark);

    text-decoration: none;

}


@media (max-width: 900px) {

    .ss-section.ss-about-page {

        padding: 108px 22px 80px;

    }

    .ss-about-layout {

        grid-template-columns: 1fr;

        gap: 36px;

    }

    .ss-about-portrait {

        position: static;

        max-width: 420px;

    }

}


/* =========================================================
   FAQ PAGE
   ========================================================= */

.ss-section.ss-faq-section {

    padding: 118px 6vw 96px;

    overflow-x: hidden;

}


.ss-faq-layout {

    display: grid;

    grid-template-columns:
        minmax(240px, 0.78fr)
        minmax(280px, 1.22fr);

    gap: 72px;

    align-items: start;

    max-width: 1180px;

    margin: 0 auto;

}


.ss-faq-sidebar {

    position: sticky;

    top: 108px;

}


.ss-faq-heading {

    margin: 0 0 28px;

    padding: 0 16px;

    font-family: inherit;

    font-size:
        clamp(
            28px,
            3vw,
            46px
        );

    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.035em;

    color: inherit;

}


.ss-faq-nav-list {

    list-style: none;

    margin: 0;

    padding: 0;

    border-top: 1px solid rgba(52, 52, 52, 0.16);

}


.ss-faq-nav-list a {

    display: block;

    padding: 18px 16px;

    border-bottom: 1px solid rgba(52, 52, 52, 0.16);

    font-size: 14px;

    font-weight: 500;

    line-height: 1.4;

    text-decoration: none;

    color: inherit;

    transition:
        background 0.2s ease,
        opacity 0.2s ease;

}


.ss-faq-nav-list a:hover {

    background: rgba(52, 52, 52, 0.045);

}


.ss-faq-nav-list a.is-active {

    background: rgba(52, 52, 52, 0.06);

}


.ss-faq-item {

    margin: 0 0 56px;

    scroll-margin-top: 108px;

}


.ss-faq-item:last-child {

    margin-bottom: 0;

}


.ss-faq-item h2 {

    margin: 0 0 14px;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.35;

}


.ss-faq-answer p {

    margin: 0 0 16px;

    max-width: 40em;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;

}


.ss-faq-answer ul,
.ss-faq-answer ol {

    margin: 0 0 16px;

    padding-left: 1.2em;

    max-width: 40em;

    font-size: 16px;

    line-height: 1.7;

}


.ss-faq-answer p:last-child {

    margin-bottom: 0;

}


.ss-faq-answer a {

    text-decoration: underline;

    text-underline-offset: 3px;

}


.ss-faq-answer a:hover {

    opacity: 0.62;

}


@media (max-width: 900px) {

    .ss-section.ss-faq-section {

        padding: 108px 22px 80px;

    }

    .ss-faq-layout {

        grid-template-columns: 1fr;

        gap: 36px;

    }

    .ss-faq-sidebar {

        position: static;

    }

    .ss-faq-heading {

        margin-bottom: 20px;

    }

    .ss-faq-item {

        margin-bottom: 40px;

        scroll-margin-top: 92px;

    }

}


/* =========================================================
   LEGAL PAGES
   ========================================================= */

.ss-section.ss-legal-section {

    padding: 118px 6vw 120px;

    overflow-x: hidden;

}


.ss-legal-wrap {

    width: 100%;

    max-width: 760px;

    margin: 0 auto;

}


.ss-legal-heading {

    margin: 0 0 16px;

    padding: 0;

    font-family: inherit;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.35;

    letter-spacing: normal;

    color: inherit;

}


.ss-legal-body {

    color: inherit;

}


.ss-legal-body .ss-legal-lede {

    margin: 0 0 28px;

    max-width: none;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;

    letter-spacing: normal;

}


.ss-legal-body .ss-legal-updated {

    margin: 0 0 28px;

    font-size: 13px;

    line-height: 1.4;

    letter-spacing: 0.02em;

    opacity: 0.58;

}


.ss-legal-body h2 {

    margin: 48px 0 16px;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.35;

    letter-spacing: normal;

}


.ss-legal-body h3 {

    margin: 28px 0 12px;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.35;

}


.ss-legal-body p {

    margin: 0 0 16px;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;

}


.ss-legal-body ul,
.ss-legal-body ol {

    margin: 0 0 16px;

    padding-left: 1.25em;

    font-size: 16px;

    line-height: 1.7;

}


.ss-legal-body li {

    margin: 0 0 8px;

}


.ss-legal-body li:last-child {

    margin-bottom: 0;

}


.ss-legal-body p:last-child,
.ss-legal-body ul:last-child,
.ss-legal-body ol:last-child,
.ss-legal-body table:last-child {

    margin-bottom: 0;

}


.ss-legal-body a {

    text-decoration: underline;

    text-underline-offset: 3px;

}


.ss-legal-body a:hover {

    opacity: 0.62;

}


.ss-legal-body .ss-legal-table,
.ss-legal-body table {

    width: 100%;

    margin: 8px 0 28px;

    border-collapse: collapse;

    font-size: 13px;

    line-height: 1.45;

}


.ss-legal-body th,
.ss-legal-body td {

    padding: 12px 14px;

    border: 1px solid rgba(52, 52, 52, 0.14);

    text-align: left;

    vertical-align: top;

}


.ss-legal-body th {

    font-weight: 600;

    background: rgba(52, 52, 52, 0.04);

}


.ss-legal-body td:first-child {

    font-weight: 500;

    white-space: nowrap;

}


@media (max-width: 900px) {

    .ss-section.ss-legal-section {

        padding: 108px 22px 88px;

    }

    .ss-legal-heading {

        margin-bottom: 16px;

    }

    .ss-legal-body h2 {

        margin-top: 36px;

    }

    .ss-legal-body .ss-legal-table,
    .ss-legal-body table {

        display: block;

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;

    }

    .ss-legal-body td:first-child {

        white-space: normal;

    }

}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.ss-section.ss-contact-section {

    padding: 96px 6vw 120px;

    overflow-x: hidden;

}


.ss-contact-heading {

    position: absolute;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;

}


.ss-contact-layout {

    display: flex;

    justify-content: space-between;

    align-items: stretch;

    gap: 0;

    max-width: 1020px;

    margin: 0 auto;

}


.ss-contact-sidebar,
.ss-contact-form-wrap {

    flex: 1 1 0;

    max-width: 400px;

    padding-top: 72px;

    scroll-margin-top: calc(var(--ss-header-offset, 0px) + 28px);

}


.ss-contact-divider {

    flex: 0 0 1px;

    width: 1px;

    margin: 0 56px;

    background: rgba(52, 52, 52, 0.22);

    align-self: stretch;

}


.ss-contact-form-heading {

    margin: 0 0 16px;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.35;

}


.ss-contact-intro {

    margin: 0 0 28px;

}


.ss-contact-intro p {

    margin: 0 0 16px;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;

    color: rgba(52, 52, 52, 0.72);

}


.ss-contact-intro p:last-child {

    margin-bottom: 0;

}


.ss-contact-intro a {

    color: inherit;

    text-decoration: underline;

    text-underline-offset: 3px;

}


.ss-contact-intro a:hover {

    opacity: 0.62;

}


.ss-contact-details {

    margin: 0;

    padding: 0;

}


.ss-contact-detail {

    margin: 0 0 48px;

    padding: 0;

}


.ss-contact-detail:last-child {

    margin-bottom: 0;

}


.ss-contact-detail dt {

    margin: 0 0 12px;

    font-size: 16px;

    font-weight: 400;

    letter-spacing: normal;

    text-transform: none;

    color: rgba(52, 52, 52, 0.62);

}


.ss-contact-detail dd {

    margin: 0;

    font-size: 24px;

    font-weight: 400;

    line-height: 1.25;

    letter-spacing: -0.02em;

}


.ss-contact-detail dd p {

    margin: 0;

    font-size: inherit;

    line-height: inherit;

}


.ss-contact-detail a {

    text-decoration: none;

}


.ss-contact-detail a:hover {

    opacity: 0.62;

}


.ss-contact-social {

    display: flex;

    align-items: center;

    gap: 20px;

}


.ss-contact-social-link {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;

    height: 36px;

    color: inherit;

    text-decoration: none;

}


.ss-contact-social-link svg {

    display: block;

    width: 36px;

    height: 36px;

}


.ss-contact-social-link:hover {

    opacity: 0.62;

}


.ss-contact-status {

    margin: 0 0 24px;

    font-size: 16px;

    line-height: 1.5;

}


.ss-contact-status.is-success {

    opacity: 1;

    font-size: 18px;

    line-height: 1.45;

}


.ss-contact-status.is-error {

    color: inherit;

}


.ss-contact-form {

    margin: 0;

    max-width: none;

}


.ss-contact-hp {

    position: absolute;

    left: -9999px;

    width: 1px;

    height: 1px;

    overflow: hidden;

}


.ss-contact-field {

    margin: 0 0 18px;

}


.ss-contact-field label {

    display: block;

    margin: 0 0 8px;

    font-size: 13px;

    font-weight: 400;

}


.ss-contact-field input,
.ss-contact-field textarea {

    display: block;

    width: 100%;

    padding: 10px 0 8px;

    border: 0;

    border-bottom: 1px solid rgba(52, 52, 52, 0.28);

    border-radius: 0;

    background: transparent;

    color: inherit;

    font: inherit;

    font-size: 16px;

    line-height: 1.4;

    box-shadow: none;

    appearance: none;

}


.ss-contact-field textarea {

    min-height: 140px;

    resize: vertical;

}


.ss-contact-field input:focus,
.ss-contact-field textarea:focus {

    outline: none;

    border-bottom-color: var(--ss-dark);

}


.ss-contact-submit {

    display: block;

    width: 100%;

    margin-top: 10px;

    padding: 13px 16px;

    border: 1px solid var(--ss-dark);

    background: var(--ss-dark);

    color: var(--ss-background);

    font: inherit;

    font-size: 11px;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;

}


.ss-contact-submit:hover {

    background: transparent;

    color: var(--ss-dark);

    border-color: var(--ss-dark);

}


.ss-contact-submit:disabled {

    opacity: 0.62;

    cursor: wait;

}


@media (max-width: 900px) {

    .ss-section.ss-contact-section {

        padding: 100px 22px 80px;

    }

    .ss-contact-layout {

        flex-direction: column;

        gap: 40px;

    }

    .ss-contact-sidebar,
    .ss-contact-form-wrap {

        max-width: none;

        flex: 1 1 auto;

        padding-top: 0;

    }

    .ss-contact-divider {

        display: none;

    }

    .ss-contact-detail {

        margin-bottom: 32px;

    }

    .ss-contact-detail dd {

        font-size: 24px;

    }

}

    }

}


/* =========================================================
   COLLECTION ARCHIVE
   ========================================================= */

.ss-collection-archive {

    background:
        var(--ss-background);

    color:
        var(--ss-dark);

}


/* ---------------------------------------------------------
   COLLECTION HERO
   --------------------------------------------------------- */

.ss-collection-hero {

    padding:
        150px 5vw 70px;

    border-bottom:
        1px solid
        rgba(52, 52, 52, 0.12);

}


.ss-collection-hero-inner {

    max-width:
        1100px;

}


.ss-collection-breadcrumb {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

    margin-bottom:
        35px;

    font-size:
        10px;

    text-transform:
        uppercase;

    letter-spacing:
        0.1em;

    opacity:
        0.5;

}


.ss-collection-breadcrumb a {

    transition:
        opacity
        0.2s
        ease;

}


.ss-collection-breadcrumb a:hover {

    opacity:
        0.55;

}


.ss-collection-hero h1 {

    margin:
        0;

    font-family:
        "Times New Roman",
        Times,
        serif;

    font-style:
        italic;

    font-size:
        clamp(
            46px,
            6.4vw,
            86px
        );

    line-height:
        0.92;

    font-weight:
        400;

    letter-spacing:
        -0.02em;

}


.ss-collection-description {

    max-width:
        650px;

    margin-top:
        25px;

    font-size:
        16px;

    line-height:
        1.55;

    color:
        rgba(
            52,
            52,
            52,
            0.65
        );

}


.ss-collection-description p {

    margin:
        0 0 12px;

}


.ss-collection-meta {

    margin-top:
        30px;

    font-size:
        10px;

    text-transform:
        uppercase;

    letter-spacing:
        0.12em;

    opacity:
        0.5;

}


/* ---------------------------------------------------------
   FOOTAGE SECTION
   --------------------------------------------------------- */

.ss-collection-footage {

    padding-top:
        55px;

}


.ss-collection-results-header {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        22px;

    padding-bottom:
        12px;

    border-bottom:
        1px solid
        rgba(
            52,
            52,
            52,
            0.14
        );

    font-size:
        10px;

    text-transform:
        uppercase;

    letter-spacing:
        0.1em;

    opacity:
        0.55;

}


/* ---------------------------------------------------------
   COLLECTION CLIP GRID
   --------------------------------------------------------- */

.ss-collection-footage
.ss-footage-grid {

    grid-template-columns:
        repeat(
            3,
            minmax(
                0,
                1fr
            )
        );

    gap:
        4px;

}


.ss-collection-footage
.ss-clip-card {

    position:
        relative;

}


.ss-collection-footage
.ss-clip-media {

    aspect-ratio:
        16 / 9;

}


.ss-collection-footage
.ss-clip-information {

    padding:
        50px 16px 14px;

}


.ss-collection-footage
.ss-clip-title {

    font-size:
        14px;

}


.ss-collection-footage
.ss-clip-meta {

    font-size:
        9px;

    margin-top:
        5px;

}


/* ---------------------------------------------------------
   EMPTY
   --------------------------------------------------------- */

.ss-collection-empty {

    padding:
        80px 0;

    text-align:
        center;

    font-size:
        13px;

    opacity:
        0.5;

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (
    max-width: 900px
) {

    .ss-collection-hero {

        padding:
            120px 25px 55px;

    }


    .ss-collection-footage {

        padding:
            45px 25px 70px;

    }


    .ss-collection-footage
    .ss-footage-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

    }

}


@media (
    max-width: 600px
) {

    .ss-collection-hero {

        padding:
            105px 20px 45px;

    }


    .ss-collection-hero h1 {

        font-size:
            42px;

    }


    .ss-collection-description {

        font-size:
            14px;

    }


    .ss-collection-footage {

        padding:
            35px 15px 55px;

    }


    .ss-collection-footage
    .ss-footage-grid {

        grid-template-columns:
            1fr;

    }


    .ss-collection-results-header {

        margin-bottom:
            15px;

    }

}

/*
|--------------------------------------------------------------------------
| Homepage Hero
|--------------------------------------------------------------------------
*/

body.ss-home-page {
    --ss-home-gap: 3px;
    --ss-home-well: #d2d3cd;
}

body.ss-home-page .ss-site > main {
    display: flex;
    flex-direction: column;
    gap: var(--ss-home-gap);
}

body.ss-home-page .ss-site {
    background: var(--ss-home-well);
}

body.ss-home-page .ss-site::after {
    content: "";
    display: block;
    height: 110px;
    background: linear-gradient(
        to bottom,
        var(--ss-home-well),
        var(--ss-background)
    );
    transition:
        opacity 0.45s ease,
        height 0.45s ease;
}

body.ss-home-page.ss-search-results-mode .ss-site,
body.ss-home-page.ss-search-results-page .ss-site {
    background: var(--ss-background);
}

body.ss-home-page.ss-search-results-mode .ss-site::after,
body.ss-home-page.ss-search-results-page .ss-site::after,
body.ss-home-page .ss-site.ss-site-is-leaving::after {
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.ss-home-hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 700px;
    overflow: hidden;
    background: #f3f1eb;
}


.ss-home-hero-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.ss-home-hero-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgb(210 211 205 / 0%) 0%,
        var(--ss-home-well, #d2d3cd) 100%
    );
}


.ss-home-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}


.ss-home-hero-video,
.ss-home-hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-home-hero-video {
    pointer-events: none;
}


.ss-home-hero-vimeo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}


.ss-home-hero-vimeo iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.78vh;
    border: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}


.ss-home-hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #f3f1eb;
    color: #20201d;
    font-size: 14px;
    letter-spacing: 0.12em;
}


/*
|--------------------------------------------------------------------------
| Hero Content
|--------------------------------------------------------------------------
*/

.ss-home-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 150px 48px 42px;
    pointer-events: none;
}


.ss-home-hero-heading {
    max-width: 900px;
}


.ss-home-hero-heading h1 {
    margin: 0;
    color: #f3f1eb;
    font-size: clamp(48px, 6vw, 104px);
    line-height: 0.94;
    font-weight: 600;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}


@keyframes ss-home-hero-line {

    from {
        opacity: 0;
        transform: translateX(-28px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: none;
    }

}


@keyframes ss-home-hero-aside {

    from {
        opacity: 0;
        transform: translateX(28px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: none;
    }

}


@keyframes ss-home-hero-aside-meta {

    from {
        opacity: 0;
        transform: translateX(28px) scale(0.98);
    }

    to {
        opacity: 0.8;
        transform: none;
    }

}


.ss-home-hero-line {
    display: block;
    animation: ss-home-hero-line 1.73s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--ss-enter-delay, 0s);
}


.ss-home-hero-information {
    align-self: flex-end;
    text-align: right;
    color: var(--ss-dark);
}


.ss-home-hero-title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    animation: ss-home-hero-aside 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--ss-enter-delay, 0s);
}


.ss-home-hero-meta {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.8;
    animation: ss-home-hero-aside-meta 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--ss-enter-delay, 0s);
}


/*
|--------------------------------------------------------------------------
| Empty Hero
|--------------------------------------------------------------------------
*/

.ss-home-hero-empty {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 48px;
    background: #f3f1eb;
    color: #20201d;
}


.ss-home-hero-empty h1 {
    margin: 0;
    font-size: clamp(48px, 6vw, 104px);
    line-height: 0.94;
    font-weight: 600;
    letter-spacing: -0.045em;
}


.ss-home-hero-empty p {
    margin-top: 30px;
    font-size: 16px;
}


/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .ss-home-hero {
        height: 85svh;
        min-height: 600px;
    }


    .ss-home-hero-content {
        padding: 120px 22px 28px;
    }


    .ss-home-hero-heading h1 {
        font-size: clamp(42px, 12vw, 72px);
    }


    .ss-home-hero-information {
        align-self: flex-start;
        text-align: left;
    }


    .ss-home-hero-title {
        font-size: 16px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .ss-home-hero-line,
    .ss-home-hero-title,
    .ss-home-hero-meta {

        animation: none;

        opacity: 1;

        transform: none;

    }

    .ss-home-hero-meta {
        opacity: 0.8;
    }

}

/*
|--------------------------------------------------------------------------
| Homepage Featured Footage
|--------------------------------------------------------------------------
*/

.ss-featured-footage {
    margin: 0;
    padding: 0;
}


.ss-featured-footage .ss-footage-grid {
    margin: 0;
    padding: 0;
}

/* ============================================================
   HOME â€” COLLECTIONS
   ============================================================ */

.ss-home-collections {
    --ss-home-card-basis: 25%;

    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}


/*
 * Collection carousel.
 *
 * Keep the cards the same basic dimensions as the
 * footage cards above.
 */

.ss-home-collections .ss-collections-carousel {
    display: block;

    width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    scrollbar-width: none;

    touch-action: pan-y;

}


.ss-home-carousel-track {
    display: flex;

    width: max-content;

    margin: 0;
    padding: 0;

    gap: var(--ss-home-gap, 3px);

    background: transparent;

    will-change: transform;
}


.ss-home-collections
.ss-collections-carousel::-webkit-scrollbar {
    display: none;
}


/*
 * Collection cards.
 *
 * The width is intentionally based on the same visual
 * proportions as the footage catalogue rather than
 * creating a separate collection-card size.
 */

.ss-home-collections .ss-collection-card {
    position: relative;

    flex: 0 0 var(--ss-home-card-basis);

    width: var(--ss-home-card-basis);

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #343434;

    box-sizing: border-box;

    text-decoration: none;
}


.ss-home-collections
.ss-collection-card-media {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #343434;
}


/*
 * Collection preview video / image.
 */

.ss-home-collections
.ss-collection-preview,

.ss-home-collections
.ss-collection-preview-image {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/*
 * Keep empty collection placeholders looking like
 * the footage placeholders.
 */

.ss-home-collections
.ss-no-preview {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #e9e7e0;

    font-size: 12px;
    letter-spacing: 0.08em;
}


/*
 * Very subtle overlay so white text remains readable.
 * This isn't a black gradient across the section â€”
 * it only sits over each image.
 */

.ss-home-collections
.ss-collection-card-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.42),
            rgba(0, 0, 0, 0.00) 55%
        );

    pointer-events: none;
}


/*
 * Collection information.
 */

.ss-home-collections
.ss-collection-card-information {

    position: absolute;

    left: 20px;
    right: 46px;
    bottom: 18px;

    z-index: 2;

    color: #ffffff;
}


.ss-home-collections
.ss-collection-card-title {

    font-size: 18px;
    line-height: 1.15;

    font-weight: 500;
}


.ss-home-collections
.ss-collection-card-count {

    margin-top: 5px;

    font-size: 11px;
    line-height: 1;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    opacity: 0.8;
}


/*
 * Hover.
 */

.ss-home-collections
.ss-collection-card-media {

    transition:
        transform 0.35s ease;
}


.ss-home-collections
.ss-collection-card:hover
.ss-collection-card-media {

    transform: scale(1.015);
}


/*
 * Empty state.
 */

.ss-home-collections-empty {

    width: 100%;

    padding: 60px 24px;

    text-align: center;

    background: #e9e7e0;

}


@media (prefers-reduced-motion: reduce) {

    .ss-home-collections .ss-collections-carousel {
        overflow-x: auto;
    }

    .ss-home-carousel-track {
        will-change: auto;
    }

}


/*
|--------------------------------------------------------------------------
| Home — scroll enter
|
| Homepage clips fade in as they enter the viewport. Opacity only,
| then the observer lets go — no scroll listeners, no extra paint.
| Collections still fade in once as a strip.
|--------------------------------------------------------------------------
*/

.ss-home-page .ss-featured-footage .ss-clip-card {
    opacity: 0;
    transition:
        opacity 1.05s cubic-bezier(0.42, 0, 0.18, 1);
}

.ss-home-page .ss-featured-footage .ss-clip-card.is-inview {
    opacity: 1;
}


.ss-home-page .ss-home-collections {
    opacity: 0;
}


.ss-home-page .ss-home-collections.is-inview {
    animation: ss-collections-fade 1.25s cubic-bezier(0.42, 0, 0.18, 1) both;
}


@media (prefers-reduced-motion: reduce) {

    .ss-home-page .ss-featured-footage .ss-clip-card {
        opacity: 1;
        transition: none;
    }

    .ss-home-page .ss-home-collections {
        animation: none;
        opacity: 1;
    }

}


@keyframes ss-scroll-enter-up {

    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: none;
    }

}


.ss-footer[data-ss-scroll-enter] {
    opacity: 0;
    transform: translateY(28px);
}


.ss-footer[data-ss-scroll-enter].is-inview {
    animation: ss-scroll-enter-up 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}


@media (prefers-reduced-motion: reduce) {

    .ss-footer[data-ss-scroll-enter] {
        animation: none;
        opacity: 1;
        transform: none;
    }

}


/* ============================================================
   HOME â€” COLLECTION RESPONSIVE SIZING
   ============================================================ */

@media (max-width: 1100px) {

    .ss-home-collections {
        --ss-home-card-basis: 33.3333%;
    }

}


@media (max-width: 700px) {

    .ss-home-collections {
        --ss-home-card-basis: 66.6667%;
    }


    .ss-home-collections
    .ss-collection-card-information {

        left: 15px;
        right: 42px;
        bottom: 14px;

    }


    .ss-home-collections
    .ss-collection-card-title {

        font-size: 16px;

    }

}

/* =========================================================
   FINAL HEADER LAYOUT
   ========================================================= */

.ss-header {

    justify-content: flex-start;

    gap: 0;

}


/* ---------------------------------------------------------
   LEFT HEADER GROUP
--------------------------------------------------------- */

.ss-header-left {

    display: flex;

    align-items: center;

    gap: 28px;

    flex: 0 0 auto;

}


/* ---------------------------------------------------------
   LOGO
--------------------------------------------------------- */

.ss-header .ss-logo {

    flex: 0 0 auto;

    margin: 0;

}


/* ---------------------------------------------------------
   SEARCH
--------------------------------------------------------- */

.ss-header .ss-header-search {

    flex: 0 0 360px;

    width: 360px;

    max-width: 360px;

    margin: 0;

}


/* ---------------------------------------------------------
   NAVIGATION
--------------------------------------------------------- */

.ss-header .ss-nav {

    display: flex;

    align-items: center;

    gap: 27px;

    margin: 0;

    flex: 0 0 auto;

}


/* =========================================================
   SEARCH DRAWER â€” PAGE MOVES WITH DRAWER
   ========================================================= */

:root {

    --ss-search-width: 360px;

}


/* ---------------------------------------------------------
   DRAWER
--------------------------------------------------------- */

.ss-search-panel {

    width:
        var(--ss-search-width);

    max-width:
        100vw;

}


/* ---------------------------------------------------------
   PAGE MOVEMENT
--------------------------------------------------------- */

body.ss-search-is-open .ss-site {

    transform:
        translateX(
            var(--ss-search-width)
        );

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 1200px) {

    body.ss-search-is-open .ss-site {

        transform:
            translateX(0);

    }

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {

    .ss-header-left {

        gap: 20px;

    }

    .ss-header .ss-header-search {

        max-width: 100%;

    }

    .ss-header .ss-nav {

        gap: 18px;

    }

}


@media (max-width: 900px) {

    .ss-header {

        padding-left: 22px;
        padding-right: 22px;

    }

    .ss-header-left {

        gap: 18px;

    }

    .ss-header .ss-header-search {

        max-width: 100%;

    }

    .ss-header .ss-nav {

        gap: 15px;

    }

}


@media (max-width: 800px) {

    .ss-header {

        height: 64px;

        padding:
            0 18px;

    }

    .ss-header-left {

        width: 100%;

        min-width: 0;

        gap: 14px;

    }

    .ss-header .ss-logo {

        font-size: 13px;

    }

    .ss-header .ss-header-search {

        height: 34px;

    }

    body.ss-search-is-open .ss-site {

        transform:
            translateX(0);

    }

}


@media (max-width: 500px) {

    .ss-header-left {

        gap: 10px;

    }

    .ss-header .ss-logo {

        font-size: 11px;

        letter-spacing: 0.09em;

    }

}

/* WordPress admin bar */

body.admin-bar .ss-header {
    top: var(--ss-header-offset, 32px);
}

/* =========================================================
   HOMEPAGE FOOTAGE GRID â€” DYNAMIC ASPECT RATIO SYSTEM
   ========================================================= */

/*
 * The homepage footage grid is deliberately NOT a conventional
 * CSS grid.
 *
 * JavaScript will calculate the width of each clip based on its
 * actual aspect ratio, allowing every row to fill the available
 * width without cropping or letterboxing.
 */

.ss-featured-footage {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}


.ss-featured-footage .ss-footage-grid {

    display: flex;

    flex-wrap: wrap;

    align-items: flex-start;

    align-content: flex-start;

    width: 100%;

    margin: 0;
    padding: 0;

    gap: var(--ss-home-gap, 3px);

    box-sizing: border-box;

    container-type: inline-size;

    visibility: hidden;

}


.ss-featured-footage.is-laid-out .ss-footage-grid {

    visibility: visible;

}


/*
 * Cards keep their native ratio. Width is a share of the
 * packed row; height follows the grid width (cqw) so a
 * live resize scales the current rows instead of wrapping
 * stale pixel widths. JavaScript only re-packs which clips
 * sit on which row after resize settles.
 */

.ss-featured-footage .ss-clip-card {

    position: relative;

    box-sizing: border-box;

    flex: 0 0 33.3333%;

    width: 33.3333%;

    height: auto;

    aspect-ratio: 16 / 9;

    max-width: none;

    min-width: 0;

    margin: 0;

    padding: 0;

    overflow: hidden;

    background: #343434;

}


.ss-featured-footage.is-laid-out .ss-clip-card {

    --ss-row-gap-total: calc(
        (var(--ss-row-count, 1) - 1) * var(--ss-home-gap, 3px)
    );

    flex-grow: var(--ss-clip-row-end, 0);

    flex-shrink: 1;

    flex-basis: calc(
        (100% - var(--ss-row-gap-total))
        * var(--ss-clip-ratio)
        / var(--ss-row-ratio-total)
    );

    width: calc(
        (100% - var(--ss-row-gap-total))
        * var(--ss-clip-ratio)
        / var(--ss-row-ratio-total)
    );

    height: calc(
        (100cqw - var(--ss-row-gap-total))
        / var(--ss-row-ratio-total)
    );

    aspect-ratio: auto;

}


/*
 * Hover preview spotlight: a fixed veil with a hole the size
 * of the hovered clip. The header stays above; the footer and
 * the rest of the page dim. Avoids 999vmax on in-flow cards
 * (that expanded the page) and stacking traps in the footage grid.
 */

.ss-preview-dim-veil {
    position: fixed;
    z-index: 1040;
    pointer-events: none;
    background: transparent;
    box-shadow: 0 0 0 999vmax rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        visibility 0s linear 0.4s;
}

.ss-preview-dim-veil.is-on {
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.8s ease-out,
        visibility 0s linear 0s;
}

body.ss-preview-dim-on .ss-header {
    z-index: 1100;
    background: var(--ss-background, #F9FAF5);
}

body.ss-preview-dim-on .ss-header::before {
    display: none;
}

.ss-featured-footage .ss-clip-card.is-spotlight,
.ss-similar-clips .ss-clip-card.is-spotlight,
.ss-search-results-main .ss-clip-card.is-spotlight,
.ss-collection-footage .ss-clip-card.is-spotlight,
.ss-collections-page .ss-collection-card.is-spotlight {
    position: relative;
    overflow: visible;
}

.ss-home-page .ss-featured-footage .ss-clip-card.is-spotlight {
    transition:
        opacity 1.05s cubic-bezier(0.42, 0, 0.18, 1);
}


/*
 * Media fills the ratio box. Cover hides any leftover
 * pixel the last clip in a row has to absorb.
 */

.ss-featured-footage .ss-clip-media {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    aspect-ratio: auto;

    overflow: hidden;

    background: #343434;

}


/*
 * Cover fills the row-height box. Rounding leftover width on
 * the last clip of a row can be a pixel or two off native
 * ratio; cover hides that instead of leaving a gap.
 */

.ss-featured-footage .ss-clip-media video,
.ss-featured-footage .ss-clip-media img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    background: transparent;

}


/*
 * Overlay remains positioned over the actual footage.
 */

.ss-featured-footage .ss-clip-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

}


/*
 * Information remains positioned over the footage.
 */

.ss-featured-footage .ss-clip-information {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 5;

}


/*
 * ---------------------------------------------------------
 * MOBILE
 * ---------------------------------------------------------
 *
 * The same dynamic system continues to work on mobile.
 * JavaScript will simply recalculate the rows when the
 * viewport changes.
 */

@media (max-width: 600px) {

    .ss-clip-heading h1 {

        font-size:
            27px;

    }


    .ss-clip-description {

        font-size:
            13px;

    }


    .ss-tech-row {

        font-size:
            12px;

    }


    .ss-licence-option,
    .ss-download-option {

        flex:
            1 1 auto;

        text-align:
            center;

    }


    .ss-similar-clips
    .ss-footage-grid {

        grid-template-columns:
            1fr;

    }

}

/* =========================================================
   SCOTLAND STOCK â€” FOOTER
   ========================================================= */

.ss-footer {
    width: 100%;
    max-width: 100%;
    margin: 0;

    padding:
        64px 5vw 28px;

    background:
        var(--ss-background);

    color:
        var(--ss-dark);

    overflow: hidden;
}


.ss-footer-inner {

    width: 100%;
    max-width: 100%;
    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}


.ss-footer-help-heading {

    font-size:
        clamp(
            28px,
            3vw,
            46px
        );

    line-height:
        0.98;

    font-weight:
        500;

    letter-spacing:
        -0.035em;

    text-align: center;

}


.ss-footer-contact-button {

    display: inline-block;

    margin-top: 25px;

    padding: 11px 16px;

    border: 1px solid var(--ss-dark);

    background: var(--ss-dark);

    color: var(--ss-background);

    font-size: 11px;

    letter-spacing: 0.08em;

    text-decoration: none !important;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;

}


.ss-footer-contact-button:hover {

    background: transparent;

    color: var(--ss-dark);

    border-color: var(--ss-dark);

    text-decoration: none !important;

}


.ss-footer-email {

    display: block;

    margin-top: 16px;

    color: var(--ss-dark);

    font-size: 13px;

    letter-spacing: 0.02em;

    text-decoration: none;

}


.ss-footer-email:hover {

    text-decoration: underline;

}


.ss-footer-social {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-top: 42px;

}


.ss-footer-social-link {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    color: var(--ss-dark);

    opacity: 0.55;

    text-decoration: none !important;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;

}


.ss-footer-social-link svg {

    display: block;

    width: 18px;
    height: 18px;

}


.ss-footer-social-link:hover {

    opacity: 1;

    transform: translateY(-1px);

}


.ss-footer-nav {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    justify-content: center;

    gap: 12px 36px;

    margin-top: 32px;

}


.ss-footer a {

    text-decoration: none;

}


.ss-footer-link {

    font-size: 13px;

    text-decoration: none;

    transition: opacity 0.2s ease;

}

.ss-footer-link:hover {

    opacity: 0.55;

    text-decoration: none;

}


/* ---------------------------------------------------------
   BOTTOM LINE
--------------------------------------------------------- */

.ss-footer-bottom {

    width: 100%;
    max-width: 100%;
    min-width: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px 28px;

    margin-top: 64px;

    padding-top: 18px;

    border-top:
        1px solid
        rgba(52, 52, 52, 0.14);

    text-align: center;

}


.ss-footer-copyright {

    flex: 0 0 auto;

    font-size: 10px;

    letter-spacing: 0.04em;

    opacity: 0.5;

}


.ss-footer-bottom-links {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    flex: 0 1 auto;

    min-width: 0;

}


.ss-footer-bottom-link {

    font-size: 10px;

    opacity: 0.5;

    text-decoration: none;

    transition:
        opacity 0.2s ease;

}


.ss-footer-bottom-link:hover {

    opacity: 1;

    text-decoration: none;

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 700px) {

    .ss-footer {

        padding:
            48px 25px 22px;

    }


    .ss-footer-nav {

        gap: 10px 24px;

        margin-top: 32px;

    }


    .ss-footer-social {

        margin-top: 36px;

    }


    .ss-footer-bottom {

        margin-top: 48px;

    }

}

.ss-footer,
.ss-footer * {
    box-sizing: border-box;
}
/* =========================================================
   FOOTER â€” GLOBAL TYPOGRAPHY OVERRIDE
   The footer is site-wide and must not inherit
   page-specific typography from .ss-single-footage.
   ========================================================= */

.ss-footer,
.ss-footer *,
.ss-single-footage .ss-footer,
.ss-single-footage .ss-footer * {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

}



/* ---------------------------------------------------------
   TEST CHECKOUT + BUYER DOWNLOAD PAGE
   --------------------------------------------------------- */

.ss-checkout {

    margin-top: 14px;

}

.ss-checkout-label {

    display: block;

    margin-bottom: 6px;

    font-size: 12px;

}

.ss-checkout-email {

    width: 100%;

    margin-bottom: 10px;

    padding: 10px 12px;

    border: 1px solid rgba(52, 52, 52, 0.25);

    background: #fff;

    color: #343434;

    font: inherit;

    font-size: 13px;

    box-sizing: border-box;

}

.ss-checkout-note,
.ss-checkout-status {

    margin: 0 0 12px;

    font-size: 12px;

    line-height: 1.45;

    opacity: 0.82;

}

.ss-checkout-link {

    display: inline-block;

    margin-top: 8px;

    color: inherit;

}

.ss-download-main {

    max-width: 560px;

    margin: 0 auto 80px;

    padding: 112px 24px 0;

}

.ss-download-main a {

    text-decoration: underline;

    text-underline-offset: 3px;

}

.ss-download-main h1 {

    margin: 0 0 12px;

    font-size: 28px;

    font-weight: 700;

}

.ss-download-clip {

    margin: 0 0 22px;

    font-size: 16px;

}

.ss-download-meta {

    margin: 0 0 22px;

}

.ss-download-meta div {

    display: grid;

    grid-template-columns: 130px 1fr;

    gap: 8px;

    margin-bottom: 10px;

    font-size: 16px;

}

.ss-download-meta dt {

    font-size: 16px;

    opacity: 0.72;

}

.ss-download-meta dd {

    margin: 0;

    font-size: 16px;

}

.ss-download-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 8px;

}

.ss-download-main .ss-download-file-button {

    display: inline-block;

    width: auto;

    min-width: 160px;

    padding: 13px 24px;

    border: 0;

    background: #343434;

    color: #F9FAF5 !important;

    font: inherit;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.2;

    text-decoration: none;

    text-align: center;

    cursor: pointer;

    transition: opacity 0.2s ease;

}

.ss-download-main .ss-download-file-button:hover {

    opacity: 0.78;

    color: #F9FAF5 !important;

}

.ss-thankyou-lede {

    margin: 0 0 28px;

    font-size: 16px;

    line-height: 1.5;

}

.ss-thankyou-item {

    margin: 0 0 36px;

}

.ss-thankyou-item:last-child {

    margin-bottom: 0;

}


/* =========================================================
   BASKET
   ========================================================= */

.ss-basket-link {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    align-self: center;

    margin-left: auto;

    margin-top: 3px;

    color: var(--ss-dark);

    text-decoration: none;

    flex: 0 0 auto;

}

.ss-basket-icon-wrap {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    border: 1px solid transparent;

    background: transparent;

    color: var(--ss-dark);

}

.ss-basket-icon {

    width: 26px;

    height: 26px;

    display: block;

    overflow: visible;

    fill: currentColor;

    stroke: currentColor;

    stroke-width: 1.4;

    stroke-linecap: round;

    stroke-linejoin: round;

}

.ss-basket-icon-body {

    stroke-width: 0;

    transition:
        fill 0.2s ease,
        stroke-width 0.2s ease;

}

.ss-basket-icon-handle {

    fill: none;

}

.ss-basket-link:hover .ss-basket-icon-body,
.ss-basket-link:focus-visible .ss-basket-icon-body {

    fill: none;

    stroke-width: 1.4;

}

.ss-basket-count {

    position: absolute;

    top: -3px;

    right: -5px;

    min-width: 18px;

    height: 18px;

    padding: 0 5px;

    border-radius: 999px;

    background: var(--ss-background);

    color: var(--ss-dark);

    font-size: 11px;

    font-weight: 600;

    line-height: 18px;

    text-align: center;

    box-shadow: 0 0 0 1px var(--ss-dark);

}

.ss-purchase-button:disabled {

    opacity: 0.55;

    cursor: default;

}

.ss-purchase-button.is-in-basket,
.ss-purchase-button.is-in-basket:hover {

    opacity: 1;

    background: #2a2a2a;

    color: #F9FAF5;

    cursor: default;

}

.ss-purchase-button.is-in-basket:disabled {

    opacity: 0.72;

}

.ss-basket-status {

    margin: 10px 0 0;

    font-size: 12px;

    line-height: 1.45;

    opacity: 0.82;

}

.ss-basket-main {

    max-width: 1080px;

    margin: 0 auto 80px;

    padding: 112px 24px 0;

    overflow-x: hidden;

}

.ss-basket-main h1 {

    margin: 0 0 28px;

    font-size: 28px;

    font-weight: 500;

}

.ss-basket-empty p {

    margin: 0 0 16px;

    opacity: 0.82;

}

.ss-basket-continue {

    display: inline-block;

    padding: 13px 24px;

    background: #343434;

    color: #F9FAF5 !important;

    font-size: 13px;

    text-decoration: none;

}

.ss-basket-layout {

    display: grid;

    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);

    gap: 36px;

    align-items: start;

}

.ss-basket-items {

    display: grid;

    gap: 16px;

}

.ss-basket-item {

    display: grid;

    grid-template-columns: 120px minmax(0, 1fr) auto;

    gap: 18px;

    align-items: center;

    padding: 16px;

    border: 1px solid rgba(249, 250, 245, 0.12);

    background: rgba(255, 255, 255, 0.03);

}

.ss-basket-item-preview {

    width: 120px;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #222;

}

.ss-basket-item-preview video,
.ss-basket-item-preview img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    pointer-events: none;

}

.ss-basket-item-preview--empty {

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.02)
    );

}

.ss-basket-item-body h2 {

    margin: 0 0 6px;

    font-size: 16px;

    font-weight: 500;

}

.ss-basket-item-body h2 a {

    color: inherit;

    text-decoration: none;

}

.ss-basket-item-body h2 a:hover {

    opacity: 0.82;

}

.ss-basket-item-id {

    margin: 0 0 10px;

    font-size: 12px;

    opacity: 0.7;

}

.ss-basket-item-meta {

    margin: 0;

}

.ss-basket-item-meta div {

    display: grid;

    grid-template-columns: 88px 1fr;

    gap: 8px;

    margin-bottom: 4px;

}

.ss-basket-item-meta dt {

    font-size: 12px;

    opacity: 0.7;

}

.ss-basket-item-meta dd {

    margin: 0;

    font-size: 13px;

}

.ss-basket-item-side {

    display: grid;

    gap: 12px;

    justify-items: end;

    text-align: right;

}

.ss-basket-item-price {

    font-size: 15px;

    font-weight: 500;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 2px;

}

.ss-basket-remove {

    border: 0;

    background: transparent;

    color: inherit;

    font: inherit;

    font-size: 12px;

    opacity: 0.72;

    cursor: pointer;

    text-decoration: underline;

    padding: 0;

}

.ss-basket-summary {

    position: sticky;

    top: 112px;

    padding: 22px;

    border: 1px solid rgba(249, 250, 245, 0.12);

    background: rgba(255, 255, 255, 0.03);

}

.ss-basket-summary-row {

    display: flex;

    align-items: baseline;

    justify-content: space-between;

    gap: 16px;

    margin-bottom: 16px;

    font-size: 15px;

}

.ss-basket-total {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 2px;

    text-align: right;

}

.ss-basket-summary-note {

    margin: 0 0 18px;

    font-size: 12px;

    line-height: 1.45;

    opacity: 0.72;

}

.ss-checkout-legal {

    margin: 14px 0 0;

    font-size: 11px;

    line-height: 1.45;

    opacity: 0.62;

}

.ss-checkout-legal a {

    text-decoration: underline;

    text-underline-offset: 2px;

}

.ss-basket-banner {

    max-width: 720px;

    margin: 0 0 28px;

    font-size: 14px;

    line-height: 1.5;

}

.ss-basket-banner--error {

    opacity: 0.92;

}

.ss-basket-success {

    margin: 0;

}

.ss-basket-checkout .ss-checkout-email {

    margin-bottom: 14px;

}

.ss-basket-purchase-button {

    width: 100%;

}

.ss-basket-downloads {

    margin: 12px 0 0;

    padding: 0;

    list-style: none;

}

.ss-basket-downloads li {

    margin-bottom: 14px;

    padding-bottom: 14px;

    border-bottom: 1px solid rgba(249, 250, 245, 0.12);

}

.ss-basket-downloads li:last-child {

    margin-bottom: 0;

    padding-bottom: 0;

    border-bottom: 0;

}

@media (max-width: 900px) {

    .ss-basket-layout {

        grid-template-columns: 1fr;

    }

    .ss-basket-summary {

        position: static;

    }

}

@media (max-width: 700px) {

    .ss-basket-item {

        grid-template-columns: 88px minmax(0, 1fr);

    }

    .ss-basket-item-side {

        grid-column: 1 / -1;

        justify-items: start;

        text-align: left;

        grid-template-columns: 1fr auto;

        align-items: center;

    }

    .ss-basket-item-preview {

        width: 88px;

    }

}

/* =========================================================
   SEARCH â€” NAV-INTEGRATED DRAWER
   ========================================================= */

:root {

    --ss-header-height: 76px;

    --ss-search-width: 360px;

    --ss-search-panel-padding-x: 24px;

    --ss-header-padding-x: 38px;

    --ss-header-search-width-closed: 360px;

}


/* Header search: decorative copy vs active input */

.ss-header .ss-header-search {

    position: relative;

    cursor: text;

}


body.ss-search-is-open
.ss-header-search-placeholder,
.ss-header-search.has-value
.ss-header-search-placeholder {

    display: none;

}


body:not(.ss-search-is-open)
.ss-header-search:not(.has-value)
.ss-header-search-input {

    position: absolute;

    width: 1px;
    height: 1px;

    margin: -1px;
    padding: 0;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;

}


/* Filter drawer sits below header, not over nav */

body.admin-bar {

    --ss-header-offset: var(--wp-admin--admin-bar--height, 32px);

}


@media (max-width: 782px) {

    body.admin-bar {

        --ss-header-offset: var(--wp-admin--admin-bar--height, 46px);

    }

}


/*
 * Below 600px WordPress makes the admin bar position:absolute,
 * so it scrolls away. Do not keep leaving a hole for it.
 */
@media (max-width: 600px) {

    body.admin-bar {

        --ss-header-offset: 0px;

    }

}


/*
 * Panel: flush to left edge, cream throughout.
 * Closed = fully off-screen (transform + visibility).
 */
.ss-search-panel {

    position: fixed;

    top: 0;

    left: 0;

    bottom: 0;

    width:
        var(--ss-search-width);

    max-width: 100vw;

    height: auto;

    box-sizing: border-box;

    margin: 0;

    padding:
        calc(
            var(--ss-header-height)
            +
            var(--ss-header-offset, 0px)
            +
            18px
        )
        var(--ss-search-panel-padding-x)
        30px;

    overflow-x: hidden;

    overflow-y: auto;

    scrollbar-gutter: stable;

    scrollbar-width: thin;

    scrollbar-color:
        rgba(52, 52, 52, 0.28)
        transparent;

    z-index: 950;

    background:
        var(--ss-background, #F9FAF5);

    color: #343434;

    border-right:
        1px solid
        rgba(52, 52, 52, 0.12);

    transform: translateX(-105%);

    visibility: hidden;

    pointer-events: none;

    transition:
        transform 0.35s ease,
        visibility 0s linear 0.35s;

}


.ss-search-panel::-webkit-scrollbar {

    width: 8px;

}


.ss-search-panel::-webkit-scrollbar-track {

    background: transparent;

}


.ss-search-panel::-webkit-scrollbar-thumb {

    background:
        rgba(52, 52, 52, 0.22);

    border-radius: 8px;

}


.ss-search-panel.is-open {

    transform: translateX(0);

    visibility: visible;

    pointer-events: auto;

    transition:
        transform 0.35s ease,
        visibility 0s linear 0s;

}


.ss-search-panel
.ss-filter-group,
.ss-search-panel
.ss-results-button {

    opacity: 0;

    transform: translateX(-36px);

    transition:
        opacity 0.16s ease,
        transform 0.16s ease;

}


.ss-search-panel.is-open
.ss-filter-group,
.ss-search-panel.is-open
.ss-results-button {

    opacity: 1;

    transform: none;

    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--ss-search-enter-delay, 0.3s),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--ss-search-enter-delay, 0.3s);

}


.ss-search-panel.is-open .ss-filter-group:nth-of-type(1) { --ss-search-enter-delay: 0.28s; }
.ss-search-panel.is-open .ss-filter-group:nth-of-type(2) { --ss-search-enter-delay: 0.36s; }
.ss-search-panel.is-open .ss-filter-group:nth-of-type(3) { --ss-search-enter-delay: 0.44s; }
.ss-search-panel.is-open .ss-filter-group:nth-of-type(4) { --ss-search-enter-delay: 0.52s; }
.ss-search-panel.is-open .ss-filter-group:nth-of-type(5) { --ss-search-enter-delay: 0.6s; }
.ss-search-panel.is-open .ss-filter-group:nth-of-type(6) { --ss-search-enter-delay: 0.68s; }
.ss-search-panel.is-open .ss-filter-group:nth-of-type(7) { --ss-search-enter-delay: 0.76s; }

.ss-search-panel.is-open .ss-results-button {
    --ss-search-enter-delay: 0.86s;
}


.ss-search-panel-header {

    justify-content: flex-end;

    margin-bottom: 8px;

}


.ss-search-panel .ss-search-close,
.ss-search-panel .ss-filter-plus {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 21px;

    height: 21px;

    padding: 0;

    margin: 0;

    box-sizing: border-box;

    font-size: 18px;

    font-weight: 300;

    line-height: 1;

}


.ss-search-panel .ss-search-close {

    border: 0;

    background: none;

    color: var(--ss-dark, #343434);

    cursor: pointer;

}


.ss-search-panel .ss-filter-plus {

    flex: 0 0 21px;

}


/*
 * Overlay covers the full page under the header, sitting beneath
 * the cream search panel so no edge shows during animation.
 */

.ss-search-overlay {

    position: fixed;

    top: calc(
        var(--ss-header-height)
        +
        var(--ss-header-offset, 0px)
    );

    right: 0;

    bottom: 0;

    left: 0;

    z-index: -1;

    background:
        rgba(52, 52, 52, 0.28);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0s linear 0.35s;

}


.ss-search-overlay.is-visible {

    z-index: 900;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transition:
        opacity 0.35s ease,
        visibility 0s linear 0s;

}


body.ss-search-is-open .ss-header {

    z-index: 1100;

}


/* Panel uses header search field only */

.ss-search-panel
.ss-search-form
> input[type="search"] {

    display: none;

}


/* Page push matches panel width exactly */

body.ss-search-is-open .ss-site {

    transform:
        translateX(
            var(--ss-search-width)
        );

}


/* ---------------------------------------------------------
   SEARCH RESULTS MODE
--------------------------------------------------------- */

body.ss-search-results-page
.ss-search-overlay,
body.ss-search-results-mode
.ss-search-overlay {

    opacity: 0 !important;

    pointer-events: none !important;

}


body.ss-search-results-page
.ss-header-search,
body.ss-search-results-mode
.ss-header-search {

    opacity: 0.48;

    border-color:
        rgba(52, 52, 52, 0.14);

    background:
        rgba(52, 52, 52, 0.035);

    transition:
        opacity 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;

}


body.ss-search-results-page
.ss-header-search:focus-within,
body.ss-search-results-mode
.ss-header-search:focus-within {

    opacity: 1;

    border-color:
        rgba(52, 52, 52, 0.22);

    background: transparent;

}


body.ss-search-is-open
.ss-site.ss-site-is-leaving {

    transform:
        translateX(
            var(--ss-search-width)
        )
        translateY(-22px);

}


.ss-search-empty {

    padding: 80px 0;

    color: #777;

}


.ss-site {

    transition:
        transform 0.35s ease,
        opacity 0.28s ease,
        background 0.45s ease;

}


.ss-site.ss-site-is-leaving {

    opacity: 0;

    transform:
        translateY(-22px);

}


body.ss-search-is-open
.ss-site:not(.ss-site-is-leaving) {

    transition:
        transform 0.35s ease,
        opacity 0.45s ease;

}


@keyframes ss-search-clip-enter {

    from {

        opacity: 0;

        transform:
            translateY(24px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


body.ss-search-results-animate
.ss-search-results-main {

    animation:
        ss-search-results-fade-in
        0.42s
        ease;

}


@keyframes ss-search-results-fade-in {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


body.ss-search-results-animate
.ss-footage-grid
.ss-clip-card {

    animation:
        ss-search-clip-enter
        0.48s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;

    animation-delay:
        calc(
            var(--ss-stagger, 0)
            *
            45ms
        );

}


@media (max-width: 1200px) {

    body.ss-search-results-page
    .ss-site,
    body.ss-search-results-mode.ss-search-is-open
    .ss-site:not(.ss-site-is-leaving),
    body.ss-search-is-open .ss-site {

        transform:
            translateX(0);

    }

    .ss-search-overlay {

        left: 0;

    }

}


@media (prefers-reduced-motion: reduce) {

    .ss-site.ss-site-is-leaving,
    body.ss-search-results-animate
    .ss-search-results-main,
    body.ss-search-results-animate
    .ss-footage-grid
    .ss-clip-card,
    .ss-search-panel,
    .ss-header-left,
    .ss-header .ss-header-search {

        animation: none !important;

        transition: none !important;

        transform: none !important;

        opacity: 1 !important;

    }

    .ss-search-panel:not(.is-open) {

        visibility: hidden !important;

    }

    .ss-search-form,
    .ss-search-panel .ss-filter-group,
    .ss-search-panel .ss-results-button,
    .ss-filter-options,
    .ss-filter-options-inner,
    .ss-filter-plus {

        animation: none !important;

        transition: none !important;

        transform: none !important;

        opacity: 1 !important;

    }

}

/* =========================================================
   HEADER â€” CENTERED LOGO LAYOUT
   ========================================================= */

.ss-header {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: center;

    justify-content: unset;

    gap: 24px;

    column-gap: 24px;

    overflow: visible;

    isolation: isolate;

    -webkit-backdrop-filter: none;

    backdrop-filter: none;

}


.ss-header::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    -webkit-backdrop-filter: blur(8px);

    backdrop-filter: blur(8px);

}


.ss-header-left {

    grid-column: 1;

    justify-self: start;

    display: flex;

    align-items: center;

    min-width: 0;

    width: 100%;

    max-width: min(360px, 100%);

    overflow: hidden;

    container-type: inline-size;

    gap: 0;

}


.ss-header .ss-logo {

    grid-column: 2;

    justify-self: center;

    position: relative;

    z-index: 1;

    margin: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    line-height: 0;

    text-decoration: none;

}


.ss-header .ss-logo img {

    display: block;

    height: 50px;

    width: auto;

    max-width: min(264px, 50vw);

    object-fit: contain;

    transform: translate3d(0, 0, 0);

    backface-visibility: hidden;

    -webkit-backface-visibility: hidden;

}


.ss-header .ss-logo {

    overflow: visible;

    transform: translate3d(0, 0, 0);

    backface-visibility: hidden;

    -webkit-backface-visibility: hidden;

    will-change: transform;

    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);

}


.ss-header .ss-logo::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        radial-gradient(
            ellipse 50% 80% at 50% 48%,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.22) 34%,
            rgba(255, 255, 255, 0.07) 58%,
            transparent 76%
        );

    background-repeat: no-repeat;

    background-size: 62% 170%;

    background-position: -40% 50%;

    opacity: 0;

    -webkit-mask-image: var(--ss-logo-mask);

    mask-image: var(--ss-logo-mask);

    -webkit-mask-size: contain;

    mask-size: contain;

    -webkit-mask-repeat: no-repeat;

    mask-repeat: no-repeat;

    -webkit-mask-position: center;

    mask-position: center;

}


.ss-header .ss-logo:hover,
.ss-header .ss-logo:focus-visible {

    transform: translate3d(0, 0, 0) scale(1.04);

}


.ss-header .ss-logo:hover::after {

    animation: ss-logo-light 1.35s ease-out 1;

}


@keyframes ss-logo-light {

    0% {
        opacity: 0;
        background-position: -38% 50%;
    }

    8% {
        opacity: 1;
    }

    82% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        background-position: 145% 50%;
    }

}


@media (prefers-reduced-motion: reduce) {

    .ss-header .ss-logo {

        transition: none;

        transform: translate3d(0, 0, 0);

    }

    .ss-header .ss-logo::after {

        animation: none;

        opacity: 0;

    }

}


.ss-header-right {

    grid-column: 3;

    justify-self: end;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: clamp(16px, 2.2vw, 28px);

    min-width: 0;

}


.ss-header .ss-nav {

    flex: 0 1 auto;

    min-width: 0;

    margin: 0;

}


.ss-header .ss-header-search {

    flex: 1 1 auto;

    width: 100%;

    min-width: 0;

    max-width: 100%;

    margin: 0;

}


.ss-header-right
.ss-basket-link {

    margin-left: 0;

    margin-top: 0;

    flex: 0 0 auto;

}


@media (max-width: 1200px) {

    .ss-header .ss-nav {

        gap: 18px;

    }

    .ss-header-right {

        gap: 20px;

    }

}


.ss-menu-toggle,
.ss-menu-close {

    display: none;

}


@media (max-width: 1200px) {

    :root {

        --ss-header-padding-x: 22px;

        --ss-search-width: min(360px, 86vw);

    }

    .ss-header {

        padding-left: 22px;

        padding-right: 22px;

        gap: clamp(12px, 1.8vw, 24px);

        column-gap: clamp(12px, 1.8vw, 24px);

    }

    .ss-header .ss-header-search {

        flex: 1 1 auto;

        width: 100%;

        min-width: 0;

        max-width: 100%;

    }

    .ss-header .ss-logo {

        max-width: 100%;

        min-width: 0;

        z-index: 2;

    }

    .ss-header-right {

        gap: 6px;

    }

    .ss-menu-toggle {

        display: inline-flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 5px;

        width: 44px;

        height: 44px;

        padding: 0;

        border: 0;

        background: transparent;

        color: var(--ss-dark, #343434);

        cursor: pointer;

    }

    .ss-menu-toggle-bar {

        display: block;

        width: 18px;

        height: 1.5px;

        background: currentColor;

    }

    header.ss-header nav.ss-nav {

        display: flex;

        position: fixed;

        top:
            calc(
                var(--ss-header-height)
                +
                var(--ss-header-offset, 0px)
                +
                8px
            );

        right: 12px;

        left: auto;

        bottom: auto;

        box-sizing: border-box;

        width: max-content;

        min-width: 168px;

        max-width: min(196px, calc(100vw - 24px));

        height: auto;

        max-height:
            calc(
                100dvh
                -
                var(--ss-header-height)
                -
                var(--ss-header-offset, 0px)
                -
                24px
            );

        z-index: 1200;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        margin: 0;

        padding: 6px 16px 8px;

        overflow: auto;

        background: var(--ss-background, #F9FAF5);

        color: #343434;

        border: 1px solid rgba(52, 52, 52, 0.12);

        box-shadow:
            0 18px 40px rgba(52, 52, 52, 0.14);

        transform-origin: top right;

        transform: translateY(-8px);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transition:
            transform 0.28s ease,
            opacity 0.22s ease,
            visibility 0s linear 0.28s;

    }

    body.ss-menu-is-open header.ss-header nav.ss-nav {

        transform: none;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transition:
            transform 0.28s ease,
            opacity 0.22s ease,
            visibility 0s linear 0s;

    }

    body.ss-menu-is-open .ss-header {

        z-index: 1100;

    }

    .ss-menu-close {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        align-self: flex-end;

        width: 21px;

        height: 21px;

        margin: 0 0 4px;

        padding: 0;

        border: 0;

        background: none;

        color: var(--ss-dark, #343434);

        font-size: 18px;

        font-weight: 300;

        line-height: 1;

        cursor: pointer;

    }

    header.ss-header nav.ss-nav .ss-nav-link {

        display: block;

        width: 100%;

        padding: 12px 0;

        border-bottom: 1px solid rgba(52, 52, 52, 0.14);

        color: #343434;

        font-size: 15px;

        line-height: 1.2;

        white-space: nowrap;

        opacity: 1;

    }

    header.ss-header nav.ss-nav .ss-nav-link:last-of-type {

        border-bottom: 0;

    }

    header.ss-header nav.ss-nav .ss-nav-link::after {

        display: none;

    }

    body.ss-search-is-open .ss-header,
    .ss-header:has(.ss-header-search.has-value) {

        grid-template-columns:
            minmax(0, min(220px, calc(100% - 10.5rem)))
            auto
            auto;

    }

    body.ss-search-is-open .ss-header-left,
    .ss-header:has(.ss-header-search.has-value) .ss-header-left {

        width: 100%;

        max-width: 100%;

        padding-left: 0;

        padding-right: 0;

        background: transparent;

        transform: none;

    }

    body.ss-search-is-open .ss-header .ss-header-search,
    .ss-header .ss-header-search.has-value {

        flex: 1 1 auto;

        width: 100%;

        min-width: 42px;

        max-width: 100%;

        padding-left: 10px;

        padding-right: 10px;

        justify-content: flex-start;

    }

}


@media (max-width: 900px) {

    :root {

        --ss-header-padding-x: 16px;

        --ss-header-height: 58px;

        --ss-search-width: min(280px, 78vw);

    }

    .ss-header {

        height: 58px;

        padding-left: 16px;

        padding-right: 16px;

        gap: 10px;

        column-gap: 10px;

    }

    .ss-header .ss-logo img {

        height: 34px;

        width: auto;

        max-width: 100%;

    }

}


@media (max-width: 800px) {

    :root {

        --ss-header-padding-x: 14px;

        --ss-header-height: 56px;

        --ss-search-width: min(252px, 72vw);

    }

    .ss-header {

        height: 56px;

        padding-left: 14px;

        padding-right: 14px;

    }

    .ss-header-left {

        width: 100%;

        min-width: 0;

    }

    .ss-header .ss-logo img {

        height: 32px;

    }

}


@media (prefers-reduced-motion: reduce) {

    header.ss-header nav.ss-nav {

        transition: none;

    }

}


@media (max-width: 500px) {

    :root {

        --ss-header-height: 52px;

        --ss-search-width: min(220px, 68vw);

    }

    .ss-header {

        height: 52px;

        gap: 8px;

        column-gap: 8px;

        padding-left: 12px;

        padding-right: 12px;

    }

    .ss-header .ss-logo img {

        height: 28px;

    }

    body.ss-search-is-open .ss-header,
    .ss-header:has(.ss-header-search.has-value) {

        grid-template-columns:
            minmax(0, min(168px, calc(100% - 9.25rem)))
            auto
            auto;

    }

}

/* =========================================================
   SEARCH â€” HEADER / PANEL ALIGNMENT (SMOOTH)
   ========================================================= */

/*
 * Keep search bar width stable; slide it with transform
 * so the open animation matches the panel (no width jump).
 */

.ss-header-left {

    transform: translateX(0);

    transition:
        transform 0.35s ease,
        max-width 0.35s ease;

}


body.ss-search-is-open .ss-header-left {

    will-change: transform;

}


.ss-header .ss-header-search {

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        opacity 0.35s ease,
        padding 0.35s ease;

}


@container (max-width: 220px) {

    .ss-header-search-placeholder {

        display: none;

    }

}


@media (min-width: 1201px) {

    .ss-header-left {

        width: 100%;

        max-width: min(360px, 100%);

    }

    body.ss-search-is-open
    .ss-header-left {

        width:
            var(--ss-search-width);

        max-width:
            var(--ss-search-width);

        margin-left: 0;

        padding-left:
            var(--ss-search-panel-padding-x);

        padding-right:
            var(--ss-search-panel-padding-x);

        box-sizing: border-box;

        background:
            var(--ss-background, #F9FAF5);

        transform:
            translateX(
                calc(
                    -1
                    *
                    var(--ss-header-padding-x)
                )
            );

    }

    body.ss-search-is-open
    .ss-header
    .ss-header-search {

        width: 100%;

        flex: 1 1 auto;

        max-width: none;

    }

}




@media (prefers-reduced-motion: reduce) {

    .ss-header .ss-header-search,
    .ss-header-left,
    .ss-search-panel {

        transition: none !important;

    }

}


/* ---------------------------------------------------------
   CLIP HOVER — NAME, DURATION, DOWNLOAD, QUICK ADD
--------------------------------------------------------- */

.ss-hover-clip-card {

    position: relative;

    display: block;

    overflow: hidden;

}

.ss-hover-clip-card:hover,
.ss-hover-clip-card:focus-within {

    z-index: 8;

    overflow: visible;

}

.ss-featured-footage .ss-clip-card:hover,
.ss-featured-footage .ss-clip-card:focus-within {

    z-index: 8;

    overflow: visible;

}

.ss-featured-footage .ss-hover-clip-card .ss-clip-link,
.ss-collection-footage .ss-hover-clip-card .ss-clip-link {

    height: 100%;

}

.ss-featured-footage .ss-hover-clip-card .ss-clip-hover,
.ss-collection-footage .ss-hover-clip-card .ss-clip-hover,
.ss-similar-clips .ss-hover-clip-card .ss-clip-hover {

    z-index: 6;

}

.ss-hover-clip-card .ss-clip-link {

    display: block;

    color: inherit;

    text-decoration: none;

}

.ss-hover-clip-card .ss-preview-poster,
.ss-collection-preview-poster {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: 1;

}

.ss-hover-clip-card .ss-preview-video,
.ss-collection-preview {

    pointer-events: none;

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: 2;

    opacity: 0;

}

.ss-hover-clip-card.is-preview-playing .ss-preview-video,
.ss-collection-card.is-preview-playing .ss-collection-preview {

    opacity: 1;

}

.ss-collection-card-overlay,
.ss-collection-card-information {

    z-index: 4;

}

@media (hover: none), (pointer: coarse) {

    .ss-hover-clip-card .ss-preview-video,
    .ss-collection-preview {

        display: none !important;

    }

}

.ss-hover-clip-card .ss-preview-video::-webkit-media-controls,
.ss-hover-clip-card .ss-preview-video::-webkit-media-controls-enclosure,
.ss-hover-clip-card .ss-preview-video::-webkit-media-controls-overlay-enclosure,
.ss-hover-clip-card .ss-preview-video::-webkit-media-controls-start-playback-button,
.ss-collection-preview::-webkit-media-controls,
.ss-collection-preview::-webkit-media-controls-enclosure,
.ss-collection-preview::-webkit-media-controls-overlay-enclosure,
.ss-collection-preview::-webkit-media-controls-start-playback-button,
.ss-home-hero-video::-webkit-media-controls,
.ss-home-hero-video::-webkit-media-controls-enclosure,
.ss-home-hero-video::-webkit-media-controls-overlay-enclosure,
.ss-site video:not([controls])::-webkit-media-controls,
.ss-site video:not([controls])::-webkit-media-controls-enclosure,
.ss-site video:not([controls])::-webkit-media-controls-overlay-enclosure,
.ss-site video:not([controls])::-webkit-media-controls-start-playback-button,
.ss-site video:not([controls])::-webkit-media-controls-overlay-play-button,
.ss-site video:not([controls])::-webkit-media-controls-overflow-button {

    display: none !important;

}

.ss-hover-clip-card .ss-clip-overlay {

    opacity: 0;

    background:
        linear-gradient(
            transparent 38%,
            rgba(0, 0, 0, 0.78)
        );

    transition: opacity 0.28s ease;

    z-index: 2;

}

.ss-hover-clip-card .ss-clip-hover {

    position: absolute;

    inset: 0;

    z-index: 6;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 16px;

    padding: 18px 16px 16px;

    color: #F9FAF5;

    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.28s ease;

}

.ss-hover-clip-card:hover .ss-clip-overlay,
.ss-hover-clip-card:focus-within .ss-clip-overlay,
.ss-hover-clip-card:hover .ss-clip-hover,
.ss-hover-clip-card:focus-within .ss-clip-hover {

    opacity: 1;

}

.ss-hover-clip-card .ss-clip-hover-copy {

    min-width: 0;

    flex: 1 1 auto;

}

.ss-hover-clip-card .ss-clip-title {

    margin: 0;

    font-size: 15px;

    font-weight: 500;

    line-height: 1.25;

    letter-spacing: 0.01em;

    color: #F9FAF5;

}

.ss-hover-clip-card .ss-clip-duration {

    margin-top: 5px;

    font-size: 12px;

    letter-spacing: 0.08em;

    color: #F9FAF5;

    opacity: 0.82;

}

.ss-hover-clip-card .ss-clip-duration:empty {

    display: none;

}

.ss-hover-clip-card .ss-clip-hover-actions {

    display: flex;

    align-items: center;

    gap: 8px;

    flex: 0 0 auto;

    pointer-events: auto;

}

.ss-hover-clip-card .ss-clip-action {

    appearance: none;

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 34px;

    height: 34px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #F9FAF5;

    cursor: pointer;

    text-decoration: none;

    opacity: 0.92;

    transition: opacity 0.2s ease, transform 0.2s ease;

}

.ss-hover-clip-card .ss-clip-action svg {

    display: block;

    width: 20px;

    height: 20px;

    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.55));

}

.ss-hover-clip-card .ss-clip-action:hover,
.ss-hover-clip-card .ss-clip-action:focus-visible {

    opacity: 1;

    transform: translateY(-1px);

}

.ss-hover-clip-card .ss-clip-action[data-tooltip]::after {

    content: attr(data-tooltip);

    position: absolute;

    left: 50%;

    bottom: calc(100% + 8px);

    padding: 6px 8px;

    background: rgba(52, 52, 52, 0.92);

    color: #F9FAF5;

    font-size: 11px;

    line-height: 1.2;

    letter-spacing: 0.02em;

    white-space: nowrap;

    opacity: 0;

    pointer-events: none;

    transform: translate(-50%, 4px);

    transition:
        opacity 0.18s ease,
        transform 0.18s ease;

}

.ss-hover-clip-card .ss-clip-action[data-tooltip]:hover::after,
.ss-hover-clip-card .ss-clip-action[data-tooltip]:focus-visible::after {

    opacity: 1;

    transform: translate(-50%, 0);

}

.ss-hover-clip-card .ss-clip-quick-add[data-tooltip]::after {

    left: auto;

    right: 0;

    transform: translate(0, 4px);

}

.ss-hover-clip-card .ss-clip-quick-add[data-tooltip]:hover::after,
.ss-hover-clip-card .ss-clip-quick-add[data-tooltip]:focus-visible::after {

    transform: translate(0, 0);

}

@media (hover: none) {

    .ss-hover-clip-card .ss-clip-overlay,
    .ss-hover-clip-card .ss-clip-hover {

        opacity: 1;

    }

    .ss-hover-clip-card .ss-clip-action[data-tooltip]::after {

        display: none;

    }

}


/* ---------------------------------------------------------
   SEARCH RESULTS — QUICK ADD
--------------------------------------------------------- */

.ss-quick-add {

    position: fixed;

    inset: 0;

    z-index: 1200;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 24px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;

}

.ss-quick-add.is-open {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}

.ss-quick-add-backdrop {

    position: absolute;

    inset: 0;

    background: rgba(52, 52, 52, 0.28);

}

.ss-quick-add-panel {

    position: relative;

    z-index: 1;

    overflow: visible;

    width: 100%;

    max-width: 420px;

    padding: 28px 26px 24px;

    background: #F9FAF5;

    color: #343434;

    box-shadow: 0 18px 50px rgba(52, 52, 52, 0.16);

    transform: translateY(12px) scale(0.985);

    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);

}

.ss-quick-add.is-open .ss-quick-add-panel {

    transform: translateY(0) scale(1);

}

.ss-quick-add-close {

    appearance: none;

    position: absolute;

    top: 14px;

    right: 14px;

    width: 36px;

    height: 36px;

    border: 0;

    background: transparent;

    color: #343434;

    font-size: 22px;

    line-height: 1;

    cursor: pointer;

    opacity: 0.55;

}

.ss-quick-add-close:hover,
.ss-quick-add-close:focus-visible {

    opacity: 1;

}

.ss-quick-add-title {

    margin: 0 36px 22px 0;

    font-size: 20px;

    font-weight: 500;

    line-height: 1.3;

}

.ss-quick-add-label {

    margin: 0 0 8px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    opacity: 0.6;

}

.ss-quick-add-options {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 18px;

    overflow: visible;

}

.ss-quick-add-option {

    position: relative;

    appearance: none;

    border: 1px solid rgba(52, 52, 52, 0.25);

    background: transparent;

    color: #343434;

    padding: 8px 12px;

    cursor: pointer;

    font: inherit;

    font-size: 12px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;

}

.ss-quick-add-option:hover,
.ss-quick-add-option.is-active,
.ss-quick-add-option.is-active {

    background: #343434;

    border-color: #343434;

    color: #F9FAF5;

}

.ss-quick-add-price {

    margin: 6px 0 12px;

    font-size: 23px;

    font-weight: 500;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 2px;

}

.ss-quick-add-button {

    width: 100%;

    border: 0;

    background: #343434;

    color: #F9FAF5;

    padding: 13px 18px;

    font: inherit;

    font-size: 12px;

    cursor: pointer;

    transition: opacity 0.2s ease;

}

.ss-quick-add-button:hover {

    opacity: 0.78;

}

.ss-quick-add-button:disabled {

    opacity: 0.55;

    cursor: default;

}

.ss-quick-add-button.is-in-basket,
.ss-quick-add-button.is-in-basket:hover {

    opacity: 0.72;

    cursor: default;

}

.ss-quick-add-status {

    margin: 10px 0 0;

    font-size: 12px;

    line-height: 1.45;

    opacity: 0.82;

}

body.ss-quick-add-open {

    overflow: hidden;

}

@media (prefers-reduced-motion: reduce) {

    .ss-hover-clip-card .ss-clip-overlay,
    .ss-hover-clip-card .ss-clip-hover,
    .ss-quick-add,
    .ss-quick-add-panel,
    .ss-services-modal,
    .ss-services-modal-panel,
    .ss-services-button {

        transition: none !important;

    }

}


/* =========================================================
   PAGE ENTER
   ========================================================= */

@keyframes ss-page-enter-left {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: none;
    }

}


@keyframes ss-page-enter-right {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: none;
    }

}


[data-ss-enter="left"] {

    animation: ss-page-enter-left 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;

}


[data-ss-enter="right"] {

    animation: ss-page-enter-right 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;

}


[data-ss-enter-delay="1"] { animation-delay: 0.06s; }

[data-ss-enter-delay="2"] { animation-delay: 0.16s; }

[data-ss-enter-delay="3"] { animation-delay: 0.28s; }

[data-ss-enter-delay="4"] { animation-delay: 0.38s; }

[data-ss-enter-delay="5"] { animation-delay: 0.48s; }

[data-ss-enter-delay="6"] { animation-delay: 0.58s; }


[hidden][data-ss-enter],
[hidden] [data-ss-enter] {

    animation: none !important;

}


@media (prefers-reduced-motion: reduce) {

    [data-ss-enter] {

        animation: none !important;

        opacity: 1;

        transform: none;

    }

}


/* =========================================================
   SERVICES PAGE
   ========================================================= */

.ss-services-heading {

    position: absolute;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;

}


.ss-section.ss-services-section {

    padding: 118px 6vw 72px;

    overflow-x: hidden;

}


.ss-services-status {

    max-width: 1020px;

    margin: 0 auto 36px;

    font-size: 16px;

    line-height: 1.6;

}


.ss-services-status.is-success {

    opacity: 0.86;

}


.ss-services-status.is-error {

    color: inherit;

}


.ss-services-modal-panel .ss-services-status {

    max-width: none;

    margin: 0 0 18px;

}


.ss-services-layout {

    max-width: 1020px;

    margin: 0 auto;

}


.ss-services-row {

    display: flex;

    align-items: center;

    gap: 104px;

    max-width: 860px;

}


.ss-services-row:not(.is-inverted) {

    margin-right: auto;

}


.ss-services-row.is-inverted {

    flex-direction: row-reverse;

    margin-left: auto;

}


.ss-services-row.is-inverted .ss-services-copy {

    text-align: right;

}


.ss-services-copy,
.ss-services-action {

    flex: 1 1 auto;

    max-width: 400px;

}


.ss-services-action {

    flex: 0 0 auto;

}


.ss-services-copy p {

    margin: 0 0 18px;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;

    color: rgba(52, 52, 52, 0.78);

}


.ss-services-copy p:last-child {

    margin-bottom: 0;

}


.ss-services-action {

    display: flex;

    align-items: center;

    justify-content: flex-start;

}


.ss-site a.ss-services-button {

    display: inline-block;

    padding: 11px 16px;

    border: 1px solid var(--ss-dark);

    background: var(--ss-dark);

    color: var(--ss-background);

    font-size: 11px;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    text-decoration: none !important;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;

}


.ss-site a.ss-services-button:hover {

    background: transparent;

    color: var(--ss-dark);

    border-color: var(--ss-dark);

    text-decoration: none !important;

}


.ss-services-rule {

    position: relative;

    left: 50%;

    width: min(1280px, calc(100vw - 8vw));

    height: 1px;

    margin: 48px 0 48px calc(-0.5 * min(1280px, calc(100vw - 8vw)));

    overflow: hidden;

}


.ss-services-rule-bar {

    display: block;

    width: 130%;

    height: 1px;

    margin-left: -15%;

    background: rgba(52, 52, 52, 0.22);

    transform: translateX(var(--ss-rule-shift, 0px));

    will-change: transform;

}


@media (prefers-reduced-motion: reduce) {

    .ss-services-rule-bar {

        opacity: 1;

        transform: none;

        animation: none;

        transition: none;

    }

}


.ss-services-modal {

    position: fixed;

    inset: 0;

    z-index: 1200;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 24px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;

}


.ss-services-modal:target,
.ss-services-modal.is-open {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


.ss-services-modal.is-closed {

    opacity: 0 !important;

    visibility: hidden !important;

    pointer-events: none !important;

}


.ss-services-modal-backdrop {

    position: absolute;

    inset: 0;

    background: rgba(52, 52, 52, 0.42);

}


.ss-services-modal-panel {

    position: relative;

    z-index: 1;

    width: 100%;

    max-width: 480px;

    max-height: calc(100vh - 48px);

    overflow: auto;

    padding: 36px 30px 28px;

    background: #F9FAF5;

    color: #343434;

    box-shadow: 0 18px 50px rgba(52, 52, 52, 0.16);

    transform: translateY(12px) scale(0.985);

    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);

}


.ss-services-modal:target .ss-services-modal-panel,
.ss-services-modal.is-open .ss-services-modal-panel {

    transform: translateY(0) scale(1);

}


.ss-services-modal-close {

    position: absolute;

    top: 12px;

    right: 16px;

    color: inherit;

    font-size: 28px;

    line-height: 1;

    text-decoration: none;

}


.ss-services-modal-close:hover {

    opacity: 0.55;

}


.ss-services-modal-panel h2 {

    margin: 0 0 14px;

    padding-right: 28px;

    font-size: 26px;

    font-weight: 500;

    letter-spacing: -0.03em;

    line-height: 1.2;

}


.ss-services-modal-copy {

    margin: 0 0 28px;

}


.ss-services-modal-copy p {

    margin: 0 0 12px;

    font-size: 16px;

    line-height: 1.6;

    color: rgba(52, 52, 52, 0.78);

}


.ss-services-modal-copy p:last-child {

    margin-bottom: 0;

}


.ss-services-hp {

    position: absolute;

    left: -9999px;

    width: 1px;

    height: 1px;

    overflow: hidden;

}


.ss-services-field {

    margin: 0 0 18px;

}


.ss-services-field label {

    display: block;

    margin: 0 0 8px;

    font-size: 13px;

    font-weight: 400;

}


.ss-services-field input,
.ss-services-field textarea {

    display: block;

    width: 100%;

    padding: 10px 0 8px;

    border: 0;

    border-bottom: 1px solid rgba(52, 52, 52, 0.28);

    border-radius: 0;

    background: transparent;

    color: inherit;

    font: inherit;

    font-size: 16px;

    line-height: 1.4;

    box-shadow: none;

    appearance: none;

}


.ss-services-field textarea {

    min-height: 140px;

    resize: vertical;

}


.ss-services-field input:focus,
.ss-services-field textarea:focus {

    outline: none;

    border-bottom-color: #343434;

}


.ss-services-submit {

    display: block;

    width: 100%;

    margin-top: 10px;

    padding: 13px 16px;

    border: 1px solid #343434;

    background: #343434;

    color: #F9FAF5;

    font: inherit;

    font-size: 11px;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;

}


.ss-services-submit:hover {

    background: transparent;

    color: #343434;

    border-color: #343434;

}


body.ss-services-modal-open {

    overflow: hidden;

}


@media (max-width: 900px) {

    .ss-section.ss-services-section {

        padding:
            calc(
                var(--ss-header-height)
                +
                var(--ss-header-offset, 0px)
                +
                28px
            )
            22px
            80px;

    }

    .ss-services-row,
    .ss-services-row.is-inverted {

        flex-direction: column;

        align-items: flex-start;

        max-width: none;

        margin: 0;

        gap: 24px;

    }

    .ss-services-row.is-inverted .ss-services-copy {

        text-align: left;

    }

    .ss-services-rule {

        left: auto;

        width: 100%;

        margin: 36px 0;

    }

    .ss-services-copy,
    .ss-services-action {

        max-width: none;

        flex: 1 1 auto;

    }

    .ss-services-action {

        justify-content: flex-start;

    }

    .ss-services-modal-panel {

        padding: 32px 22px 24px;

    }

}


/* =========================================================
   FIELD STUDIO
   ========================================================= */

.ss-studio-page .ss-header-search {
    visibility: hidden;
}

.ss-section.ss-studio-section {
    padding: 118px 6vw 96px;
    max-width: 1280px;
    margin: 0 auto;
    color: var(--ss-dark, #343434);
}

.ss-studio-heading {
    margin: 0 0 16px;
    padding: 0;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: normal;
    text-transform: none;
    color: inherit;
}

.ss-studio-lede {
    max-width: 40em;
    margin: 0 0 28px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: normal;
    color: rgba(52, 52, 52, 0.72);
}

.ss-studio-lede strong {
    color: var(--ss-dark, #343434);
    font-weight: 600;
}

.ss-studio-steps {
    max-width: 40em;
    margin: 0 0 28px;
    padding-left: 1.25em;
    font-size: 16px;
    line-height: 1.7;
}

.ss-studio-steps li {
    margin: 0 0 8px;
}

.ss-studio-steps li:last-child {
    margin-bottom: 0;
}

.ss-studio-folder-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.ss-studio-bar {
    margin: 0 0 28px;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: rgba(52, 52, 52, 0.62);
}

.ss-studio-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ss-studio-link:hover {
    opacity: 0.62;
}

.ss-studio-error,
.ss-studio-status.is-error,
.ss-studio-files .is-bad,
.ss-studio-clip-log .is-bad {
    color: #8a2b2b;
}

.ss-studio-error {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.5;
}

.ss-studio-login {
    max-width: 400px;
}

.ss-studio-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 18px;
}

.ss-studio-field span,
.ss-studio-field label,
.ss-studio-login label {
    font-size: 13px;
    font-weight: 400;
}

.ss-studio-field input[type="text"],
.ss-studio-field input[type="password"],
.ss-studio-login input[type="text"],
.ss-studio-login input[type="password"],
.ss-studio-field select,
.ss-studio-clip input[type="text"],
.ss-studio-clip textarea,
.ss-studio-clip select {
    width: 100%;
    padding: 10px 0 8px;
    border: 0;
    border-bottom: 1px solid rgba(52, 52, 52, 0.28);
    border-radius: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
    box-shadow: none;
    appearance: none;
}

.ss-studio-field input[type="text"]:focus,
.ss-studio-field input[type="password"]:focus,
.ss-studio-login input[type="text"]:focus,
.ss-studio-login input[type="password"]:focus,
.ss-studio-field select:focus,
.ss-studio-clip input[type="text"]:focus,
.ss-studio-clip textarea:focus,
.ss-studio-clip select:focus {
    outline: none;
    border-bottom-color: var(--ss-dark, #343434);
}

.ss-studio-remember label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.ss-studio-field input[type="file"] {
    font-size: 13px;
}

.ss-studio-controls {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 18px 22px;
    margin: 0 0 18px;
    align-items: end;
}

.ss-studio-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ss-studio-button {
    appearance: none;
    border: 1px solid var(--ss-dark, #343434);
    background: var(--ss-dark, #343434);
    color: var(--ss-background, #f9faf5);
    padding: 13px 16px;
    font: inherit;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.ss-studio-button:hover:not(:disabled) {
    background: transparent;
    color: var(--ss-dark, #343434);
}

.ss-studio-button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.ss-studio-button-secondary {
    background: transparent;
    color: var(--ss-dark, #343434);
    border-color: rgba(52, 52, 52, 0.35);
}

.ss-studio-button-secondary:hover:not(:disabled) {
    background: var(--ss-dark, #343434);
    color: var(--ss-background, #f9faf5);
    border-color: var(--ss-dark, #343434);
}

.ss-studio-login .ss-studio-button {
    display: block;
    width: 100%;
    margin-top: 10px;
}

.ss-studio-status {
    margin: 8px 0 18px;
    min-height: 1.4em;
    font-size: 16px;
    line-height: 1.5;
}

.ss-studio-folder-hint {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(52, 52, 52, 0.62);
}

.ss-studio-results > p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(52, 52, 52, 0.72);
}

.ss-studio-checkall {
    display: block;
    margin: 0 0 14px;
    font-size: 13px;
}

.ss-studio-clip {
    border: 1px solid rgba(52, 52, 52, 0.16);
    padding: 18px 18px 12px;
    margin: 0 0 16px;
}

.ss-studio-clip-head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0 0 10px;
}

.ss-studio-clip-head strong {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.ss-studio-flags {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(52, 52, 52, 0.62);
}

.ss-studio-files {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(52, 52, 52, 0.72);
}

.ss-studio-files li {
    margin: 0 0 4px;
}

.ss-studio-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 14px;
}

.ss-studio-grid > label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
}

.ss-studio-span2 {
    grid-column: span 2;
}

.ss-studio-span-all {
    grid-column: 1 / -1;
}

.ss-studio-clip-body {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 18px 22px;
    align-items: start;
}

.ss-studio-preview video,
.ss-studio-preview img {
    width: 100%;
    background: #111;
    border-radius: 6px;
    display: block;
}

.ss-studio-preview video::-webkit-media-controls-overflow-button,
.ss-studio-preview video::-webkit-media-controls-overlay-enclosure {
    display: none !important;
}

.ss-studio-preview-note {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(52, 52, 52, 0.62);
}

.ss-studio-bulk-hint {
    margin: 0 0 16px;
    max-width: 40em;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(52, 52, 52, 0.72);
}

.ss-studio-clip.is-in-library {
    border-color: rgba(52, 52, 52, 0.32);
}

.ss-studio-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    align-items: center;
    margin: 0;
    padding: 10px 12px 8px;
    border: 1px solid rgba(52, 52, 52, 0.14);
}

.ss-studio-checks legend {
    padding: 0 6px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ss-studio-check-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: 1;
}

.ss-studio-grid > .ss-studio-publish {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    grid-column: 1 / -1;
}

.ss-studio-clip-log {
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(52, 52, 52, 0.62);
}

@media (max-width: 900px) {

    .ss-section.ss-studio-section {
        padding: 108px 22px 80px;
    }

    .ss-studio-controls,
    .ss-studio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ss-studio-clip-body {
        grid-template-columns: 1fr;
    }

    .ss-studio-span2 {
        grid-column: span 2;
    }

}

@media (max-width: 640px) {

    .ss-studio-controls,
    .ss-studio-grid {
        grid-template-columns: 1fr;
    }

    .ss-studio-span2,
    .ss-studio-span-all {
        grid-column: span 1;
    }

}


/* =========================================================
   SITE NOTICE — under the header
   ========================================================= */

html.ss-site-notice-dismissed .ss-site-notice {

    display: none !important;

}


.ss-site-notice {

    position: fixed;

    top: calc(var(--ss-header-height, 76px) + var(--ss-header-offset, 0px) + 10px);

    right: var(--ss-header-padding-x, 38px);

    left: auto;

    z-index: 980;

    box-sizing: border-box;

    width: min(380px, calc(100vw - 24px));

    max-width: calc(100vw - 24px);

    padding: 14px 38px 14px 16px;

    background: #F9FAF5;

    color: #1a1a1a;

    border-radius: 4px;

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);

    font-size: 13px;

    line-height: 1.5;

    overflow-wrap: anywhere;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}


.ss-site-notice.is-visible {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    animation: ss-site-notice-in 0.4s ease;

}


.ss-site-notice-text {

    margin: 0;

}


.ss-site-notice-close {

    position: absolute;

    top: 6px;

    right: 6px;

    width: 28px;

    height: 28px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #1a1a1a;

    font-size: 20px;

    line-height: 1;

    cursor: pointer;

}


.ss-site-notice-close:hover,
.ss-site-notice-close:focus-visible {

    opacity: 0.55;

}


body.ss-menu-is-open .ss-site-notice,
body.ss-search-is-open .ss-site-notice {

    opacity: 0;

    pointer-events: none;

}


@keyframes ss-site-notice-in {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@media (max-width: 720px) {

    .ss-site-notice {

        top: calc(var(--ss-header-height, 56px) + var(--ss-header-offset, 0px) + 8px);

        left: 12px;

        right: 12px;

        width: auto;

        max-width: none;

        font-size: 12.5px;

    }

}
