/* ============================================
   CREA STUDIO — Lavori (Portfolio) Page
   Fullscreen slideshow layout
   ============================================ */

/* ============================================
   BASE OVERRIDES
   ============================================ */

.lavori-body {
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
}

/* ============================================
   VIEWPORT
   ============================================ */

.lavori-viewport {
    position: fixed;
    inset: 0;
    overflow: hidden;
}

/* ============================================
   BACKGROUND
   ============================================ */

.viewport-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: background-color 0.4s ease;
}

/* ============================================
   WATERMARK
   ============================================ */

.viewport-watermark {
    position: absolute;
    top: clamp(60px, 8vh, 120px);
    left: clamp(24px, 3vw, 48px);
    transform: none;
    font-size: clamp(5rem, 10vw, 14rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.85;
    color: var(--watermark-color, rgba(255, 255, 255, 0.06));
    white-space: nowrap;
    pointer-events: none;
    z-index: 6;
    text-transform: uppercase;
    user-select: none;
    transition: opacity 0.5s ease, transform 0.5s ease, color 0.6s ease;
}

.viewport-watermark.out {
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

/* ============================================
   HERO MEDIA
   ============================================ */

.hero-media {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(440px, 52vw, 1300px);
    height: clamp(340px, 58vh, 780px);
    border-radius: 12px;
    overflow: hidden;
    z-index: 5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: opacity 0.5s ease, transform 0.5s ease, width 0.5s ease, height 0.5s ease, border-radius 0.3s ease;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-media.hero-vertical {
    width: clamp(260px, 26vw, 460px);
    height: clamp(460px, 75vh, 800px);
    border-radius: 20px;
}

/* ============================================
   MEDIA STRIP — horizontal photo+video chain
   ============================================ */
.media-strip {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1vw, 20px);
    transition: opacity 0.4s ease;
    overflow: visible;
    max-width: none;
}

.media-strip.active {
    display: flex;
}

/* When hero is visible (horizontal mode), strip sits behind it full-width */
.media-strip.strip-sides {
    width: 100vw;
    max-width: none;
    justify-content: center;
    gap: clamp(8px, 0.6vw, 14px);
    z-index: 3;
}

/* Push photos to edges with spacer in the middle (filled by hero) */
.media-strip.strip-sides .strip-spacer {
    flex: 0 0 clamp(456px, 54vw, 1340px);
    height: 1px;
    pointer-events: none;
}

/* Side mode photos — fill edge to edge */
.media-strip.strip-sides .strip-photo {
    width: clamp(160px, 16vw, 360px);
    height: clamp(200px, 32vh, 440px);
}

.media-strip.out {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.media-strip.empty {
    display: none;
}

/* Individual strip items */
.strip-item {
    flex-shrink: 0;
    border-radius: 18px;
    position: relative;
    opacity: 0;
    transform: translateY(16px) scale(0.95);
    transition: opacity 0.45s ease, transform 0.1s ease-out, box-shadow 0.1s ease-out;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    will-change: transform;
}

.media-strip.reveal .strip-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.media-strip.reveal .strip-photo:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(1.4);
    z-index: 20;
}

.media-strip.reveal .strip-video:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    transform: translateY(-4px) scale(1.04);
    z-index: 10;
}

.strip-item img,
.strip-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

/* Photo items — landscape, smaller */
.strip-photo {
    width: clamp(120px, 14vw, 280px);
    height: clamp(160px, 24vh, 340px);
}

/* Video items — portrait reel, taller and prominent */
.strip-video {
    width: clamp(160px, 16vw, 320px);
    height: clamp(280px, 48vh, 560px);
    border-radius: 16px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
}

.hero-media.out {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.96) translateY(8px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.project-info.dissolve-out {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}


/* ============================================
   PROJECT INFO BAR
   ============================================ */

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: clamp(24px, 3vh, 40px) clamp(40px, 4vw, 64px);
    display: flex;
    align-items: center;
    gap: clamp(32px, 4vw, 72px);
    background: transparent;
    transition: opacity 0.5s ease;
}

.project-info.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Services text (bottom-left) */
.info-services {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

/* Social icons (bottom-right) */
.info-socials {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-left: auto;
}

.info-social {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.info-social:hover {
    color: #fff;
}

/* Credit badge — positioned below the hero media */
.hero-credit {
    position: absolute;
    bottom: clamp(100px, 14vh, 180px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 8px 24px;
    white-space: nowrap;
    transition: opacity 0.5s ease;
}

/* ============================================
   HERO OVERLAY (slide 0 only)
   ============================================ */

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    text-align: center;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
    color: var(--black);
}

.hero-subtitle {
    font-size: clamp(0.85rem, 0.8vw, 1.1rem);
    line-height: 1.7;
    color: var(--gray);
    max-width: 500px;
    margin: 24px auto 0;
}

.hero-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   LOGO BANNER — scrolling partner logos
   ============================================ */
.logo-banner {
    position: absolute;
    bottom: clamp(16px, 3vh, 40px);
    left: 0;
    right: 0;
    z-index: 20;
    overflow: hidden;
    padding: 16px 0;
    mask-image: linear-gradient(90deg, transparent 2%, black 12%, black 88%, transparent 98%);
    -webkit-mask-image: linear-gradient(90deg, transparent 2%, black 12%, black 88%, transparent 98%);
    transition: opacity 0.5s ease;
}

.logo-banner.hidden {
    opacity: 0;
    pointer-events: none;
}

.logo-banner-track {
    display: flex;
    align-items: center;
    gap: clamp(48px, 5vw, 88px);
    animation: logoScroll 35s linear infinite;
    width: max-content;
}

/* Override partner-logo sizes — subtle trust bar */
.logo-banner .partner-logo {
    height: 28px !important;
}
.logo-banner .partner-logo--x2 {
    height: 40px !important;
}
.logo-banner .partner-logo--tall {
    height: 44px !important;
}
.logo-banner .partner-logo--x4 {
    height: 56px !important;
}

.logo-banner .partner-logo--haze {
    height: 112px !important;
}
.logo-banner .partner-logo--x1-5 {
    height: 34px !important;
}

.logo-banner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-banner-item:hover {
    opacity: 1;
    transform: scale(1.08);
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

/* ============================================
   SLIDE PROGRESS
   ============================================ */

.slide-progress {
    position: fixed;
    top: clamp(20px, 2.5vh, 36px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-current,
.progress-total {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    font-variant-numeric: tabular-nums;
    transition: color 0.4s ease;
}

.progress-track {
    width: clamp(60px, 8vw, 140px);
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    transition: background 0.4s ease;
}

.progress-bar {
    height: 100%;
    background: var(--current-accent, #3fa9f5);
    transition: width 0.6s ease, background-color 0.4s ease;
    border-radius: 2px;
}

/* ============================================
   NAV DOTS
   ============================================ */

.slide-dots {
    position: fixed;
    right: clamp(16px, 2vw, 32px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
}

.slide-dot:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

.slide-dot.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.25);
}

/* ============================================
   SCROLL HINT
   ============================================ */

.viewport-hint {
    position: absolute;
    bottom: clamp(100px, 18vh, 200px);
    left: clamp(24px, 3vw, 48px);
    z-index: 30;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    transition: color 0.4s ease, opacity 0.4s ease;
}

/* ============================================
   HERO ACTIVE THEME (slide 0 — light bg)
   ============================================ */

.lavori-hero-active .viewport-watermark {
    color: rgba(0, 0, 0, 0.04);
}

.lavori-hero-active .slide-progress .progress-current,
.lavori-hero-active .slide-progress .progress-total {
    color: rgba(0, 0, 0, 0.3);
}

.lavori-hero-active .slide-progress .progress-track {
    background: rgba(0, 0, 0, 0.08);
}

.lavori-hero-active .slide-progress .progress-bar {
    background: var(--black);
}

.lavori-hero-active .slide-dots .slide-dot {
    border-color: rgba(0, 0, 0, 0.2);
}

.lavori-hero-active .slide-dots .slide-dot.active {
    background: var(--black);
    border-color: var(--black);
}

.lavori-hero-active .viewport-hint {
    color: rgba(0, 0, 0, 0.35);
}

.lavori-hero-active .corner-tl .logo {
    filter: invert(1);
}

/* ============================================
   MENU LIGHT THEME (dark slides)
   ============================================ */

.menu-btn.lavori-menu-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.menu-btn.lavori-menu-light:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.menu-btn.lavori-menu-light .menu-icon span {
    background: var(--white);
}

/* ============================================
   ESPLORA BUTTON
   ============================================ */

.esplora-btn {
    position: absolute;
    bottom: clamp(80px, 11vh, 140px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.esplora-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.esplora-btn:hover svg {
    stroke: var(--black);
}

.esplora-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   DETAIL OVERLAY
   ============================================ */

.detail-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: var(--detail-bg, #0b1a12);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease, visibility 0s 0.6s;
    overflow: hidden;
}

.detail-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity 0.6s ease, visibility 0s 0s;
}

/* Header */
.detail-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 510;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

.detail-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.detail-progress-dots {
    display: flex;
    gap: 4px;
    margin-left: 8px;
}

.detail-progress-dot {
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.detail-progress-dot.active {
    background: var(--current-accent, #3fa9f5);
}

.detail-back {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.detail-back:hover {
    color: #ffffff;
}

.detail-close {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.detail-close:hover {
    color: #ffffff;
}

/* Detail layout — CSS Grid */
.detail-overlay.active {
    display: grid;
    grid-template-columns: 280px 1fr 100px;
    grid-template-rows: 56px 1fr 90px;
}

.detail-header {
    grid-column: 1 / -1;
    grid-row: 1;
}

/* Left sidebar */
.detail-sidebar {
    grid-column: 1;
    grid-row: 2;
    z-index: 505;
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    scrollbar-width: none;
}

.detail-sidebar::-webkit-scrollbar {
    display: none;
}

.detail-logo {
    margin-bottom: 12px;
}

.detail-logo img {
    max-height: 32px;
    width: auto;
}

.detail-watermark {
    font-size: clamp(2.2rem, 3.5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.85;
    color: var(--watermark-color, rgba(255, 255, 255, 0.06));
    text-transform: uppercase;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 24px;
}

.detail-project-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-number {
    font-size: 2.8rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
}

.detail-divider {
    width: 30px;
    height: 2px;
    background: var(--current-accent, #3fa9f5);
    margin: 6px 0;
}

.detail-name {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.detail-category {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 2px;
}

.detail-description {
    font-size: 0.72rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 12px;
}

/* Main gallery */
.detail-gallery {
    grid-column: 2;
    grid-row: 2;
    z-index: 502;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
}

.detail-gallery-item {
    position: absolute;
    inset: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.detail-gallery-item.active {
    opacity: 1;
    pointer-events: all;
}

.detail-gallery-item img,
.detail-gallery-item video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

/* Right thumbnail strip */
.detail-thumbs {
    grid-column: 3;
    grid-row: 2;
    z-index: 506;
    overflow-y: auto;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    scrollbar-width: none;
}

.detail-thumbs::-webkit-scrollbar {
    display: none;
}

.detail-thumb {
    width: 72px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.45;
}

.detail-thumb.active {
    border-color: var(--current-accent, #3fa9f5);
    opacity: 1;
}

.detail-thumb:hover {
    opacity: 0.8;
}

.detail-thumb img,
.detail-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.detail-thumb-play {
    position: relative;
}

.detail-thumb-play::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.6rem;
    color: white;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    pointer-events: none;
}

/* Bottom info */
.detail-bottom {
    grid-column: 1 / -1;
    grid-row: 3;
    z-index: 508;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.65);
}

.detail-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.detail-bottom-studio {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
}

.detail-bottom-tagline {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
}

.detail-bottom-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-shrink: 0;
}

.detail-meta-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.detail-meta-key {
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--current-accent, #3fa9f5);
    width: 10px;
}

.detail-meta-label {
    font-size: 0.58rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.3);
    width: 50px;
}

.detail-meta-value {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.detail-insights-btn {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.detail-insights-btn:hover {
    border-color: var(--white);
    color: var(--white);
}

.detail-bottom-desc {
    flex: 1;
    font-size: 0.68rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    max-width: 380px;
}

.detail-bottom-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    margin-left: auto;
    flex-shrink: 0;
}

.detail-link {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.detail-link:hover {
    color: var(--white);
}

/* ============================================
   RESPONSIVE — TABLET (≤1023px)
   ============================================ */

@media (max-width: 1023px) {
    .hero-media {
        width: clamp(300px, 60vw, 600px);
    }

    .hero-media.hero-vertical {
        width: clamp(200px, 30vw, 320px);
        height: clamp(350px, 55vh, 580px);
    }

    /* Strip: compact on tablet */
    .media-strip.active {
        gap: 6px;
        max-width: 94vw;
    }

    .strip-photo {
        width: clamp(70px, 10vw, 110px);
        height: clamp(90px, 14vh, 150px);
    }

    .strip-video {
        width: clamp(100px, 16vw, 180px);
        height: clamp(180px, 34vh, 320px);
        border-radius: 12px;
    }

    .media-strip.strip-sides .strip-spacer {
        flex: 0 0 clamp(300px, 60vw, 600px);
    }

    .media-strip.strip-sides .strip-photo {
        width: clamp(80px, 12vw, 140px);
        height: clamp(110px, 18vh, 200px);
    }

    .hero-credit {
        font-size: 0.72rem;
        padding: 6px 18px;
        bottom: clamp(80px, 12vh, 140px);
    }

    .project-info {
        padding: 12px 24px;
        gap: 16px;
    }

    /* Detail overlay tablet */
    .detail-overlay.active {
        grid-template-columns: 220px 1fr 80px;
        grid-template-rows: 50px 1fr 80px;
    }

    .detail-watermark {
        font-size: 1.8rem;
    }

    .detail-thumb {
        width: 56px;
        height: 40px;
    }

    .detail-bottom-desc {
        display: none;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (<=767px)
   ============================================ */

@media (max-width: 767px) {
    /* Strip: hide on mobile, hero only */
    .media-strip {
        display: none !important;
    }

    /* Credit badge: smaller, higher */
    .hero-credit {
        font-size: 0.6rem;
        padding: 5px 14px;
        bottom: clamp(70px, 11vh, 120px);
    }

    /* Hero media: fill more of the screen on mobile */
    .hero-media {
        width: 92vw;
        height: 50vh;
        min-height: 260px;
        top: 40%;
        transform: translate(-50%, -50%);
    }

    .hero-media.hero-vertical {
        width: 55vw;
        height: 58vh;
        max-width: 300px;
    }

    .hero-media.out {
        transform: translate(-50%, -50%) scale(0.96) translateY(8px);
    }

    /* Hero overlay (intro slide): center in the card */
    .hero-overlay {
        top: 50%;
        width: 85vw;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-overlay .hero-title {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }

    .hero-overlay .hero-subtitle {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        margin-top: 16px;
    }

    /* Project info bar: compact on mobile */
    .project-info {
        padding: 10px 16px;
        gap: 12px;
    }

    .info-services {
        font-size: 0.6rem;
        display: none;
    }

    .info-social svg {
        width: 16px;
        height: 16px;
    }

    /* Watermark: smaller on mobile */
    .viewport-watermark {
        font-size: clamp(2.5rem, 14vw, 5rem);
    }

    /* Slide dots: hide on mobile — progress bar + swipe is enough */
    .slide-dots {
        display: none;
    }

    /* Esplora button: bigger touch target, positioned higher */
    .esplora-btn {
        min-height: 44px;
        padding: 14px 28px;
        font-size: 0.72rem;
    }

    /* Hide "Scorri per esplorare" on mobile — swipe is intuitive */
    .viewport-hint {
        display: none;
    }

    /* Detail overlay: stack as a scrollable column on mobile */
    .detail-overlay.active {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .detail-header {
        padding: 12px 16px;
        position: sticky;
        top: 0;
        z-index: 520;
        background: rgba(0, 0, 0, 0.85);
    }

    /* Limit progress dots so they don't overflow on narrow screens */
    .detail-progress-dots {
        max-width: 60vw;
        overflow: hidden;
        flex-wrap: wrap;
        gap: 3px;
        margin-left: 4px;
    }

    .detail-progress-dot {
        width: 14px;
        height: 3px;
    }

    .detail-sidebar {
        padding: 16px 16px 8px;
        order: 2;
    }

    .detail-watermark {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .detail-number {
        font-size: 2rem;
    }

    .detail-name {
        font-size: 1.1rem;
    }

    .detail-description {
        font-size: 0.7rem;
    }

    /* Main gallery: fill width, proportional height */
    .detail-gallery {
        width: 100%;
        min-height: 60vw;
        max-height: 65vh;
        position: relative;
        order: 1;
    }

    .detail-gallery-item {
        inset: 4px;
    }

    .detail-gallery-item img {
        border-radius: 8px;
    }

    /* Thumbs: horizontal scrollable strip */
    .detail-thumbs {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 8px 16px;
        order: 3;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 6px;
    }

    .detail-thumbs::-webkit-scrollbar {
        display: none;
    }

    .detail-thumb {
        width: 52px;
        height: 38px;
        flex-shrink: 0;
    }

    /* Bottom bar: stack vertically */
    .detail-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 16px;
        order: 4;
    }

    .detail-bottom-left {
        width: 100%;
    }

    .detail-bottom-links {
        flex-direction: row;
        gap: 16px;
        margin-left: 0;
        flex-wrap: wrap;
    }

    .detail-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .detail-bottom-desc {
        display: none;
    }

    .detail-bottom-meta {
        display: none;
    }

    /* Insights button: full-width on mobile */
    .detail-insights-btn {
        width: 100%;
        text-align: center;
        min-height: 44px;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (<=480px)
   ============================================ */

@media (max-width: 480px) {
    .hero-media {
        width: 92vw;
        height: 38vh;
        min-height: 200px;
    }

    .hero-media.hero-vertical {
        width: 60vw;
        height: 52vh;
        max-width: 280px;
    }

    .project-info {
        padding: 10px 12px;
    }

    .hero-overlay .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
    }

    .esplora-btn {
        font-size: 0.62rem;
        padding: 10px 20px;
    }

    .detail-gallery {
        min-height: 45vw;
        max-height: 50vh;
    }
}

/* ============================================
   ULTRAWIDE (34"+)
   ============================================ */
@media (min-width: 2200px) {
    /* Hero media: allow it to fill more of the ultrawide canvas */
    .hero-media {
        width: clamp(600px, 38vw, 1200px);
        height: clamp(400px, 52vh, 800px);
    }

    .hero-media.hero-vertical {
        width: clamp(280px, 18vw, 420px);
        height: clamp(500px, 68vh, 780px);
    }

    /* Strip: proportioned for ultrawide */
    .strip-photo {
        width: clamp(160px, 8vw, 300px);
        height: clamp(220px, 30vh, 400px);
    }

    .strip-video {
        width: clamp(240px, 13vw, 440px);
        height: clamp(430px, 72vh, 820px);
        border-radius: 24px;
    }

    .media-strip {
        gap: clamp(10px, 0.6vw, 16px);
    }

    /* Watermark: scale up for visibility */
    .viewport-watermark {
        font-size: clamp(8rem, 10vw, 18rem);
    }

    /* Hero overlay: scale headline for large screens */
    .hero-title {
        font-size: clamp(5rem, 5vw, 9rem);
    }

    /* Progress track: make it longer on wide screens */
    .progress-track {
        width: clamp(100px, 8vw, 200px);
    }

    /* Project info bar: give it more breathing room */
    .project-info {
        padding: clamp(28px, 3vh, 48px) clamp(60px, 5vw, 100px);
    }

    /* Detail overlay — wider sidebar + thumbs */
    .detail-overlay.active {
        grid-template-columns: 400px 1fr 140px;
        grid-template-rows: 64px 1fr 110px;
    }

    .detail-sidebar {
        padding: 28px 44px;
    }

    .detail-watermark {
        font-size: clamp(3rem, 3vw, 5rem);
        margin-bottom: 32px;
    }

    .detail-number {
        font-size: 3.5rem;
    }

    .detail-name {
        font-size: 1.6rem;
    }

    .detail-category {
        font-size: 0.72rem;
    }

    .detail-description {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-top: 16px;
    }

    .detail-divider {
        width: 40px;
        height: 3px;
        margin: 8px 0;
    }

    /* Thumbnails */
    .detail-thumb {
        width: 110px;
        height: 70px;
        border-radius: 6px;
    }

    /* Bottom bar */
    .detail-bottom {
        padding: 20px 44px;
        gap: clamp(32px, 4vw, 80px);
    }

    .detail-bottom-studio {
        font-size: 0.85rem;
    }

    .detail-bottom-tagline {
        font-size: 0.7rem;
    }

    .detail-bottom-meta .meta-row {
        gap: 16px;
    }

    .detail-bottom-meta .meta-label {
        font-size: 0.68rem;
    }

    .detail-bottom-meta .meta-value {
        font-size: 0.8rem;
    }

    .detail-bottom-desc {
        font-size: 0.78rem;
        max-width: 500px;
    }

    .detail-bottom-links .detail-link {
        font-size: 0.72rem;
    }

    /* Header */
    .detail-header {
        padding: 0 44px;
    }

    .detail-close,
    .detail-back {
        font-size: 0.8rem;
    }

    .detail-counter span {
        font-size: 0.75rem;
    }
}

/* ============================================
   SHOWCASE OVERLAY
   ============================================ */

.showcase-overlay {
    position: fixed;
    inset: 0;
    z-index: 600;
    background: var(--showcase-bg, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0s 0.35s;
    overflow: hidden;
}

.showcase-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity 0.35s ease, visibility 0s 0s;
}

/* Inner container slides up */
.showcase-inner {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: clamp(48px, 6vh, 96px) clamp(24px, 3vw, 48px) clamp(48px, 6vh, 96px) clamp(40px, 5vw, 96px);
    gap: clamp(24px, 3vw, 48px);
    transform: translateY(100vh);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    overflow: hidden;
}

.showcase-inner.in {
    transform: translateY(0);
}

/* ---- Left panel ---- */
.showcase-left {
    flex: 0 0 clamp(280px, 30vw, 480px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #fff;
    align-self: center;
}

.showcase-logo {
    max-width: clamp(100px, 12vw, 180px);
    max-height: 60px;
    object-fit: contain;
    object-position: left;
    opacity: 0.9;
    margin-bottom: 8px;
}

.showcase-logo.showcase-logo-lg {
    max-width: clamp(180px, 22vw, 320px);
    max-height: 100px;
}

.showcase-project-num {
    font-size: 3.5rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.showcase-divider {
    width: 36px;
    height: 2px;
    background: var(--current-accent, #3fa9f5);
}

.showcase-title {
    font-size: clamp(1.6rem, 2.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.showcase-desc {
    font-size: clamp(0.72rem, 0.85vw, 0.9rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
    max-width: 380px;
    margin: 0;
}

/* Stats (social) */
.showcase-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    margin-top: 16px;
}

.showcase-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.showcase-stat-val {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--current-accent, #3fa9f5);
    line-height: 0.9;
}

.showcase-stat-label {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

/* Web info */
.showcase-web-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.showcase-web-row {
    display: flex;
    gap: 16px;
    align-items: baseline;
}

.showcase-web-key {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--current-accent, #3fa9f5);
    flex-shrink: 0;
    width: 32px;
}

.showcase-web-val {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Action buttons */
.showcase-close-btn {
    position: absolute;
    top: clamp(20px, 3vh, 40px);
    left: clamp(24px, 3vw, 56px);
    z-index: 610;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.showcase-close-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ---- Right panel ---- */
.showcase-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

/* ============================================
   SHOWCASE GALLERY STRIP (right side)
   ============================================ */

.showcase-gallery-strip {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-self: stretch;
}

.showcase-gallery-strip::-webkit-scrollbar {
    display: none;
}

.gallery-strip-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateX(20px);
    animation: stripThumbIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.gallery-strip-thumb:hover {
    border-color: var(--current-accent, #3fa9f5);
    transform: scale(1.08);
}

.gallery-strip-thumb img,
.gallery-strip-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-strip-thumb-video {
    position: relative;
}

.gallery-strip-thumb-video::after {
    content: '';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.gallery-strip-thumb-video::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    pointer-events: none;
}

@keyframes stripThumbIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   SHOWCASE MOCKUP IMAGES
   ============================================ */

.showcase-mockups {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 3vw, 48px);
    height: 100%;
    padding: clamp(24px, 4vh, 60px) clamp(16px, 2vw, 40px);
    perspective: 1200px;
    box-sizing: border-box;
}

.showcase-mockup-img {
    max-height: 72vh;
    width: auto;
    max-width: 50%;
    object-fit: contain;
    filter: drop-shadow(0 24px 64px rgba(0, 0, 0, 0.6));
    animation: mockupFloat 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    transform-origin: center bottom;
}

/* Single device — phone or laptop alone */
.showcase-mockup-img:only-child {
    max-height: 82vh;
    max-width: 80%;
}

/* Two devices: first child (usually laptop/feed) gets more width */
.showcase-mockup-img:first-child:not(:only-child) {
    max-width: 52%;
    max-height: 68vh;
}

/* Two devices: last child (usually phone/feed) */
.showcase-mockup-img:last-child:not(:only-child) {
    max-height: 75vh;
    max-width: 38%;
}

/* Staggered entrance — each image slides up + fades in */
@keyframes mockupFloat {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.92);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Full media (replaces mockup on thumb click) */
.showcase-full-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 24px;
    box-sizing: border-box;
}

.showcase-full-media img,
.showcase-full-media video {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 24px 64px rgba(0, 0, 0, 0.5));
}

/* Active thumb in gallery strip */
.gallery-strip-active {
    border-color: var(--current-accent, #3fa9f5) !important;
    transform: scale(1.08);
}

.showcase-mockup-link {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.showcase-mockup-link .showcase-mockup-img {
    max-width: 100%;
    max-height: 100%;
}

.showcase-mockup-link:first-child:not(:only-child) {
    max-width: 52%;
    max-height: 68vh;
}

.showcase-mockup-link:last-child:not(:only-child) {
    max-width: 38%;
    max-height: 75vh;
}

.showcase-mockup-link:only-child {
    max-height: 82vh;
    max-width: 80%;
}

/* Subtle hover lift */
.showcase-mockup-img:hover {
    filter: drop-shadow(0 32px 80px rgba(0, 0, 0, 0.7));
    transform: translateY(-8px) scale(1.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

/* ============================================
   SHOWCASE RESPONSIVE — TABLET
   ============================================ */

@media (max-width: 1023px) {
    .showcase-inner {
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        align-items: flex-start;
        padding: 80px 28px 40px;
        gap: 32px;
    }

    .showcase-left {
        flex: none;
        width: 100%;
    }

    .showcase-right {
        width: 100%;
        height: auto;
        justify-content: flex-start;
    }

    .showcase-mockups {
        height: auto;
        flex-wrap: wrap;
    }

    .showcase-mockup-img {
        max-height: clamp(260px, 50vw, 420px);
        max-width: 45%;
    }

    .showcase-mockup-img:only-child {
        max-width: 70%;
        max-height: clamp(300px, 56vw, 480px);
    }

    .showcase-gallery-strip {
        flex: 0 0 60px;
    }

    .gallery-strip-thumb {
        width: 56px;
        height: 56px;
    }
}

/* ============================================
   SHOWCASE RESPONSIVE — MOBILE
   ============================================ */

@media (max-width: 767px) {
    .showcase-inner {
        padding: 72px 20px 32px;
        gap: 24px;
    }

    .showcase-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }

    .showcase-stat-val {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    /* Gallery strip horizontal on mobile */
    .showcase-gallery-strip {
        flex: none;
        flex-direction: row;
        height: auto;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px;
        padding: 0;
        order: 10;
    }

    .gallery-strip-thumb {
        width: 56px;
        height: 56px;
    }

    /* Stack mockups on mobile, keep first prominent */
    .showcase-mockups {
        flex-direction: column;
        gap: 16px;
    }

    .showcase-mockup-img {
        max-width: 70%;
        max-height: clamp(240px, 50vh, 380px);
    }

    .showcase-mockup-img:nth-child(2) {
        max-width: 55%;
        max-height: clamp(180px, 36vh, 280px);
    }

    .showcase-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
    }

    .showcase-gallery-btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

}

/* ============================================
   SHOWCASE RESPONSIVE — LARGE DESKTOP
   ============================================ */

@media (min-width: 1920px) {
    .showcase-overlay {
        align-items: stretch;
    }

    .showcase-inner {
        max-width: none;
        gap: 0;
        padding: 0;
    }

    .showcase-left {
        flex: 0 0 30%;
        padding: clamp(60px, 8vh, 120px) clamp(40px, 3vw, 72px);
        justify-content: center;
        gap: 24px;
    }

    .showcase-logo {
        max-width: clamp(140px, 14vw, 240px);
        max-height: 80px;
        margin-bottom: 12px;
    }

    .showcase-title {
        font-size: clamp(2.4rem, 2.8vw, 4rem);
    }

    .showcase-desc {
        font-size: clamp(0.82rem, 0.75vw, 1rem);
        max-width: 420px;
    }

    .showcase-project-num {
        font-size: clamp(3rem, 3.5vw, 5rem);
    }

    .showcase-stat-val {
        font-size: clamp(2.4rem, 3vw, 4.5rem);
    }

    .showcase-stat-label {
        font-size: clamp(0.6rem, 0.5vw, 0.78rem);
    }

    .showcase-stats {
        gap: 24px 40px;
    }

    .showcase-right {
        flex: 1;
        background: rgba(255, 255, 255, 0.02);
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }

    .showcase-mockups {
        gap: clamp(32px, 3vw, 64px);
        padding: clamp(24px, 4vh, 60px) clamp(32px, 3vw, 72px);
        align-items: center;
    }

    .showcase-mockup-img {
        max-height: 78vh;
    }

    .showcase-mockup-img:first-child:not(:only-child) {
        max-width: 54%;
        max-height: 72vh;
    }

    .showcase-mockup-img:last-child:not(:only-child) {
        max-height: 80vh;
        max-width: 40%;
    }

    .showcase-mockup-img:only-child {
        max-height: 85vh;
        max-width: 70%;
    }

    .showcase-mockup-link:first-child:not(:only-child) {
        max-width: 54%;
        max-height: 72vh;
    }

    .showcase-mockup-link:last-child:not(:only-child) {
        max-width: 40%;
        max-height: 80vh;
    }

    .showcase-mockup-link:only-child {
        max-height: 85vh;
        max-width: 70%;
    }

    .showcase-gallery-strip {
        flex: 0 0 100px;
        gap: 8px;
        padding: 12px 8px;
        background: rgba(0, 0, 0, 0.2);
    }

    .gallery-strip-thumb {
        width: 86px;
        height: 86px;
    }
}

/* ============================================
   SHOWCASE RESPONSIVE — ULTRAWIDE (2560+)
   ============================================ */

@media (min-width: 2560px) {
    .showcase-left {
        flex: 0 0 26%;
        padding: clamp(80px, 10vh, 140px) clamp(48px, 4vw, 96px);
        gap: 28px;
    }

    .showcase-title {
        font-size: clamp(2.8rem, 2.5vw, 4.5rem);
    }

    .showcase-desc {
        font-size: 0.95rem;
        max-width: 460px;
        line-height: 1.75;
    }

    .showcase-stat-val {
        font-size: clamp(3rem, 3.2vw, 5rem);
    }

    .showcase-stat-label {
        font-size: 0.72rem;
    }

    .showcase-stats {
        gap: 28px 48px;
    }

    .showcase-mockups {
        gap: clamp(36px, 3vw, 64px);
        padding: clamp(24px, 4vh, 60px) clamp(40px, 3vw, 80px);
        align-items: center;
    }

    .showcase-mockup-img {
        max-height: 82vh;
    }

    .showcase-mockup-img:first-child:not(:only-child) {
        max-width: 52%;
        max-height: 76vh;
    }

    .showcase-mockup-img:last-child:not(:only-child) {
        max-height: 84vh;
        max-width: 42%;
    }

    .showcase-mockup-img:only-child {
        max-height: 88vh;
        max-width: 65%;
    }

    .showcase-mockup-link:first-child:not(:only-child) {
        max-width: 52%;
        max-height: 76vh;
    }

    .showcase-mockup-link:last-child:not(:only-child) {
        max-width: 42%;
        max-height: 84vh;
    }

    .showcase-mockup-link:only-child {
        max-height: 88vh;
        max-width: 65%;
    }

    .showcase-gallery-strip {
        flex: 0 0 120px;
    }

    .gallery-strip-thumb {
        width: 114px;
        height: 114px;
    }
}
