/* Portfolio Page Specific Styles */

/* Portfolio Hero Section */
.portfolio-hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.portfolio-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.portfolio-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.portfolio-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Portfolio Introduction */
.portfolio-intro {
    padding: 8rem 0;
    background: #111111;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.intro-content > p {
    font-size: 1.2rem;
    text-align: center;
    opacity: 0.8;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-item p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Portfolio Gallery */
.portfolio-gallery {
    padding: 8rem 0;
    background: #0a0a0a;
}

.portfolio-gallery h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.gallery-info p {
    font-size: 1rem;
    opacity: 0.9;
    color: #e0e0e0;
}

/* Portfolio CTA */
.portfolio-cta {
    padding: 6rem 0;
    background: #111111;
    text-align: center;
}

.portfolio-cta h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.portfolio-cta p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Story-based Layout Styles */

/* Hero Section with Parallax */
.story-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    will-change: transform;
    transform: translateZ(0);
}

.story-hero .parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.85) 25%, rgba(0,0,0,0.6) 45%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 75%, transparent 100%);
}

/* Products page specific - lighter overlay */
body.products-page .story-hero .parallax-bg::before {
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.45) 25%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 75%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 600px;
    padding: 0 4rem 4rem 4rem;
    margin-left: 2rem;
}

.story-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    line-height: 1.1;
}

.story-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Story Introduction */
.story-intro {
    padding: 8rem 0;
    background: #111111;
    text-align: center;
}

.intro-text h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.intro-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

/* Story Sections */
.story-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Reverse sections rely on HTML order - text first, image second */

.story-text {
    padding: 2rem;
}

.story-text h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    color: #ffffff;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
}

.parallax-container {
    overflow: hidden;
    border-radius: 12px;
}

.parallax-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    will-change: transform;
    transform: translateZ(0);
}

/* Parallax Dividers */
.parallax-divider {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.parallax-divider .parallax-bg {
    background-attachment: fixed;
}

/* Gallery Showcase */
.gallery-showcase {
    padding: 8rem 0;
    background: #111111;
    overflow: hidden;
    min-height: 800px;
}

.gallery-showcase h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 2px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    scroll-behavior: smooth;
}

.showcase-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    will-change: transform;
    contain: layout;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.showcase-item:hover img {
    transform: none;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    pointer-events: none;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.showcase-overlay span {
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Lightbox Thumbnails */
.lightbox-thumbnails {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    max-width: 90%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.lightbox-thumbnails::-webkit-scrollbar {
    display: none;
}

.lightbox-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.lightbox-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-thumbnail.active {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.lightbox-thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .lightbox-thumbnails {
        bottom: 1rem;
        padding: 0.5rem 1rem;
        gap: 0.3rem;
    }

    .lightbox-thumbnail {
        width: 45px;
        height: 30px;
    }
}

/* Gallery Navigation - Hidden (not needed for grid layout) */
.gallery-navigation {
    display: none;
}

.gallery-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

/* Story CTA */
.story-cta {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.story-cta h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.story-cta p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in-up.animate,
.fade-in-left.animate,
.fade-in-right.animate {
    opacity: 1;
    transform: translate(0);
}

/* Animation Delays */
.delay-1 { transition-delay: 0.5s; }
.delay-2 { transition-delay: 0.7s; }
.delay-3 { transition-delay: 0.9s; }
.delay-4 { transition-delay: 1.1s; }
.delay-5 { transition-delay: 1.3s; }

/* Smart Image Positioning System */

/* Face-focused positioning classes for hero backgrounds */
.parallax-bg.face-focus-top {
    background-position: center 20% !important;
}

.parallax-bg.face-focus-upper {
    background-position: center 30% !important;
}

.parallax-bg.face-focus-center {
    background-position: center 50% !important;
}

.parallax-bg.face-focus-lower {
    background-position: center 70% !important;
}

.parallax-bg.face-focus-left {
    background-position: 30% center !important;
}

.parallax-bg.face-focus-right {
    background-position: 70% center !important;
}

.parallax-bg.face-focus-top-left {
    background-position: 30% 20% !important;
}

.parallax-bg.face-focus-top-right {
    background-position: 70% 20% !important;
}

.parallax-bg.face-focus-upper-left {
    background-position: 30% 30% !important;
}

.parallax-bg.face-focus-upper-right {
    background-position: 70% 30% !important;
}

/* Portrait orientation optimization */
.parallax-bg.portrait-optimize {
    background-position: center 35% !important;
    background-size: cover !important;
}

/* Parallax image positioning for story sections */
.parallax-image.face-focus-top {
    object-position: center 20% !important;
}

.parallax-image.face-focus-upper {
    object-position: center 30% !important;
}

.parallax-image.face-focus-center {
    object-position: center 50% !important;
}

.parallax-image.face-focus-lower {
    object-position: center 70% !important;
}

.parallax-image.face-focus-left {
    object-position: 30% center !important;
}

.parallax-image.face-focus-right {
    object-position: 70% center !important;
}

.parallax-image.face-focus-top-left {
    object-position: 30% 20% !important;
}

.parallax-image.face-focus-top-right {
    object-position: 70% 20% !important;
}

.parallax-image.face-focus-upper-left {
    object-position: 30% 30% !important;
}

.parallax-image.face-focus-upper-right {
    object-position: 70% 30% !important;
}

/* Portrait image optimization */
.parallax-image.portrait-optimize {
    object-position: center 35% !important;
    object-fit: cover !important;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .parallax-bg.face-focus-top,
    .parallax-bg.face-focus-upper {
        background-position: center 25% !important;
    }

    .parallax-bg.face-focus-top-left,
    .parallax-bg.face-focus-upper-left {
        background-position: 40% 25% !important;
    }

    .parallax-bg.face-focus-top-right,
    .parallax-bg.face-focus-upper-right {
        background-position: 60% 25% !important;
    }

    .parallax-image.face-focus-top,
    .parallax-image.face-focus-upper {
        object-position: center 25% !important;
    }

    .parallax-image.face-focus-top-left,
    .parallax-image.face-focus-upper-left {
        object-position: 40% 25% !important;
    }

    .parallax-image.face-focus-top-right,
    .parallax-image.face-focus-upper-right {
        object-position: 60% 25% !important;
    }
}

/* Concert/performance specific positioning */
.parallax-bg.performance-focus {
    background-position: center 40% !important;
}

.parallax-image.performance-focus {
    object-position: center 40% !important;
}

/* Group photo optimization */
.parallax-bg.group-focus {
    background-position: center 45% !important;
}

.parallax-image.group-focus {
    object-position: center 45% !important;
}

/* Horizontal/wide image optimization */
.story-image.horizontal-image {
    aspect-ratio: 16/9;
}

.parallax-image.horizontal-image {
    object-fit: contain;
    background: #000000;
}

/* About Page Specific Styles - Phil Penman inspired */
.about-story-section {
    padding: 6rem 0;
    background: #111111;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-story-content {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-image-container {
    position: relative;
    width: 100%;
    height: auto;
}

.about-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-text-content {
    padding: 0;
    padding-top: 1rem;
}

.about-text-content h1 {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.15em;
    line-height: 1.3;
    color: #D4AF37;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.about-text-content h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.about-text-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #cccccc;
    font-weight: 300;
    text-align: justify;
    font-family: 'Inter', sans-serif;
}

.about-text-content p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for about page */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-story-content {
        grid-template-columns: 45% 1fr;
        gap: 4rem;
    }

    .about-text-content h1 {
        font-size: 2.8rem;
    }

    .about-text-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-story-section {
        padding: 4rem 0;
    }

    .about-story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-image-container {
        max-width: 400px;
        margin: 0 auto;
        aspect-ratio: 3/4;
    }

    .about-text-content h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .about-text-content p {
        font-size: 1rem;
        text-align: left;
    }
}

/* Active Navigation Highlight */
.nav-link.active {
    color: #ffffff;
    font-weight: 500;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design for Portfolio Pages */
@media (max-width: 768px) {
    .portfolio-hero {
        height: 60vh;
    }

    .portfolio-hero h1 {
        font-size: 2.5rem;
    }

    .portfolio-hero p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-filter {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .filter-btn {
        width: 200px;
        text-align: center;
    }

    .portfolio-intro {
        padding: 4rem 0;
    }

    .portfolio-gallery {
        padding: 4rem 0;
    }

    .portfolio-cta {
        padding: 4rem 0;
    }

    .intro-content h2,
    .portfolio-gallery h2,
    .portfolio-cta h2 {
        font-size: 2rem;
    }

    /* Story Layout Responsive */
    .story-hero {
        height: 80vh;
        justify-content: center;
        align-items: flex-end;
    }

    .story-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .story-hero p {
        font-size: 1.1rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        margin-left: 0;
        padding: 0 1.5rem 3rem 1.5rem;
    }

    /* Bottom overlay on mobile for text visibility */
    .story-hero .parallax-bg::before {
        background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.6) 20%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,0.2) 50%, transparent 65%);
    }

    .parallax-bg {
        background-attachment: scroll;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    /* Reverse order for .reverse sections on mobile - show image first, then text */
    .story-section.reverse .story-content {
        display: flex;
        flex-direction: column-reverse;
    }

    .story-text {
        padding: 1rem;
    }

    .story-text h3 {
        font-size: 2rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .intro-text h2 {
        font-size: 2.2rem;
    }

    .intro-text p {
        font-size: 1.1rem;
    }

    .story-intro {
        padding: 4rem 0;
    }

    .story-section {
        padding: 4rem 0;
    }

    .parallax-divider {
        display: none;
    }

    .parallax-divider .parallax-bg {
        background-attachment: scroll;
    }

    .gallery-showcase {
        padding: 4rem 0;
        min-height: auto;
    }

    .gallery-showcase h2 {
        font-size: 2rem;
    }

    .showcase-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1.5rem;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .showcase-item {
        flex: 0 0 85%;
        max-width: 400px;
    }

    .gallery-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .story-cta {
        height: 60vh;
    }

    .story-cta h2 {
        font-size: 2.2rem;
    }

    .story-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-hero h1 {
        font-size: 2rem;
    }

    .portfolio-hero p {
        font-size: 1rem;
    }

    .gallery-item {
        aspect-ratio: 1/1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 1rem;
    }
}

/* Ultra-wide screen optimizations (2560px+) */
@media (min-width: 2560px) {
    .story-content {
        max-width: 2000px;
        gap: 6rem;
    }

    .about-story-content {
        max-width: 1800px;
        gap: 6rem;
    }

    .showcase-grid {
        max-width: 2000px;
        gap: 2.5rem;
    }

    .showcase-item {
        aspect-ratio: 4/3;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
    }

    .portfolio-hero h1,
    .story-hero h1 {
        font-size: 5rem;
    }

    .intro-text h2,
    .story-text h3 {
        font-size: 3.5rem;
    }

    .intro-text p,
    .story-text p {
        font-size: 1.4rem;
        max-width: 1000px;
    }

    .about-text-content h2 {
        font-size: 2.8rem;
    }

    .about-text-content p {
        font-size: 1.2rem;
    }
}

/* Extra ultra-wide screens (3440px+) */
@media (min-width: 3440px) {
    .story-content {
        max-width: 2800px;
        gap: 8rem;
    }

    .about-story-content {
        max-width: 2400px;
        gap: 8rem;
    }

    .showcase-grid {
        max-width: 2800px;
        gap: 3rem;
    }

    .showcase-item {
        aspect-ratio: 4/3;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 4rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 4rem;
    }
}