:root {
    --bg-sand: #ece4db;
    --text-brown: #442f21;
    --text-blue: #1383ff;
    --accent-yellow: #ffd298;
    --bg-white: #ffffff;
    --bg-brown: #442f21;
    --bg-mud: rgba(194,181,166,0.9);
    --bg-green: #d9f4a9; /* Added for services and benefits */
    --bg-olive: #454d37; /* Added for process */
    
    --font-sans: 'Rethink Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --font-serif: 'Newsreader', serif;
    --font-logo: 'Bebas Neue', sans-serif;
}

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

html {
    font-size: 10px;
    width: 100%;
    overscroll-behavior-y: auto;
}

body {
    background-color: var(--bg-sand);
    color: var(--text-brown);
    font-family: var(--font-sans);
    line-height: normal;
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

h1, h2, h3, h4, h5, h6, .section-title, .cta-title, .step-title {
    font-family: var(--font-body);
}

.page-wrapper {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    position: relative;
    background-color: var(--bg-sand);
    overflow-x: clip;
}

/* Utilities (Pixel Perfect Matches) */
.ml-41 { margin-left: 41px; }
.ml-49 { margin-left: 49px; }
.ml-50 { margin-left: 50px; }
.ml-55 { margin-left: 55px; }
.ml-63 { margin-left: 63px; }
.ml-115 { margin-left: 115px; }
.mt-12 { margin-top: 6px; /* Raised by 5px from 11px */ }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-82 { margin-top: 82px; }
.mb-70 { margin-bottom: 70px; }
.mb-78 { margin-bottom: 78px; }

.svg-divider {
    display: none; /* Hidden globally */
}
.line-faint {
    opacity: 0.15;
}
.filter-white {
    filter: brightness(0) invert(1);
    background-color: white; /* fallback */
    height: 1px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    margin: 0;
    width: 100%;
}

.header-logo-link {
    text-decoration: none;
    display: inline-block;
}
.header-logo-img {
    width: 161px;
    height: auto;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 46px;
}
.nav {
    display: flex;
    align-items: center;
    gap: 46px;
}
.nav a {
    text-decoration: none;
    color: #1e1e1e;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 21.38px;
    text-transform: uppercase;
}

/* Dropdown Menu styling */
.nav-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 260px;
    box-shadow: 0px 8px 24px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 12px;
    padding: 15px 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    bottom: -20px;
    left: 0;
}

.dropdown-content a {
    color: var(--text-brown) !important;
    padding: 16px 20px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 21px; /* Reduced to fit Small-Batch Makers */
    white-space: nowrap;
    text-transform: none !important;
    font-weight: 400 !important;
    transition: background-color 0.2s;
}

.dropdown-content a:hover {
    background-color: rgba(0,0,0,0.03);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.btn {
    background-color: var(--text-blue);
    color: white !important;
    padding: 14px 30px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 20.33px;
    transition: opacity 0.2s;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
}
.btn:hover {
    opacity: 0.9;
}

/* Hero */
.hero-new {
    margin: 30px 0 0 0;
    width: 100%;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.hero-visuals {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 2028px;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 1024 / 363;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.hero-full-slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
}
.pill-top {
    top: -20px;
    left: 0;
}
.pill-bottom {
    bottom: -20px;
    left: 25%;
    transform: translateX(-50%);
}
.hero-text-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
    width: 100%;
    max-width: 2028px;
}
.hero-text-left {
    width: 60%;
}
.hero-text-right {
    width: 35%;
}
.hero-new h1 {
    font-family: var(--font-serif);
    font-size: 66.27px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--text-brown);
    letter-spacing: -2px;
}
.hero-new h1.blue {
    color: var(--text-blue);
}
.hero-new p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text-brown);
    margin-bottom: 20px;
}
.hero-text-link {
    display: inline-block;
    color: var(--text-blue);
    font-family: var(--font-body);
    font-size: 25.27px;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s;
}
.hero-text-link:hover {
    opacity: 0.8;
}
.fw-semibold {
    font-weight: 600;
}

/* Past Clients */
.past-clients {
    margin: 130px 50px;
    text-align: center;
}
.clients-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.clients-logos-strip {
    display: flex;
    justify-content: center;
    width: 100%;
}
.clients-logos-strip img {
    max-width: 1014px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Gallery Section */
.gallery-section {
    position: relative;
    margin-top: 186px;
    padding-left: 50px;
    padding-right: 50px;
}
.view-more-label {
    position: absolute;
    top: -30px;
    right: 50px;
    font-size: 18.38px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-brown);
    transition: all 0.2s ease;
}

a.hover-effect:hover .view-more-label {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.gallery-img {
    width: 100%;
    height: auto;
    display: block;
}

.landing-slideshow {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: transparent;
}

.landing-slideshow-track {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: start;
}

.landing-slideshow-track img {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: 2.46 / 1;
    object-fit: contain;
    object-position: top;
    background-color: var(--bg-sand);
    opacity: 0;
    visibility: hidden;
    will-change: opacity;
    transition: opacity 1.2s ease-in-out, visibility 1.2s;
}

.landing-slideshow-track img.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Badges */
.section-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-brown);
}
.badge-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 0;
    margin-top: -4px;
    color: var(--text-brown);
}
.badge-light {
    color: white;
}
.badge-light .badge-arrow {
    color: white;
}

/* CSS Variables - Updated for Vercel trigger */
/* Services */
.services {
    margin: 52px 50px 0 50px;
    background-color: var(--bg-green);
    padding: 40px 50px 80px 50px;
    border-radius: 12px;
}
.section-title {
    font-family: var(--font-body);
    font-size: 54px;
    line-height: 1.15;
    font-weight: 500;
    padding-left: 0;
    margin-top: 25px;
    margin-bottom: 45px;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0px;
}
.service-card {
    background: white;
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1 1 30%;
    min-width: 200px;
    max-width: 100%;
    border-radius: 12px;
}
.card-num {
    color: var(--text-blue);
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}
.service-card h3 {
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--text-brown);
}
.service-card p {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-brown);
    line-height: 1.4;
    margin-top: 0;
    max-width: 100%;
}

/* Pricing Area */
.pricing-header {
    margin: 52px 50px 20px 50px;
}
/* Pricing */
.pricing {
    position: relative;
    padding-bottom: 0px;
}
.pricing-card {
    display: flex;
    align-items: flex-start;
    padding: 70px 50px;
    background-color: white;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 30px;
    max-width: calc(100% - 100px);
    border-radius: 12px;
}
.pricing-card:last-child {
    margin-bottom: 0px;
}
.pricing-num {
    font-size: 20px;
    margin-top: 10px;
    color: var(--text-brown);
    font-family: var(--font-body);
    flex-shrink: 0;
    width: 10%;
    padding-left: 0;
}
.pricing-content {
    flex-grow: 1;
    max-width: 50%;
}
.pricing-content h2 {
    font-family: var(--font-serif);
    font-size: 52px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--text-brown);
}
.pricing-content p {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 550px;
    line-height: 1.4;
    color: var(--text-brown);
}
.price {
    font-family: var(--font-body);
    font-size: 38px;
    font-weight: 600;
    color: var(--text-brown);
    margin-top: 30px;
}
.pricing-includes {
    padding-left: 0px;
    width: calc((100% - 60px) / 3);
    flex-shrink: 0;
    margin-left: auto;
}
.includes-title {
    font-size: 16px;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-brown);
    margin-bottom: 15px;
}
.pricing-includes ul {
    list-style: none;
    padding-left: 0;
}
.pricing-includes li {
    font-size: 20px;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-brown);
    margin-bottom: 12px;
    line-height: 1.4;
    display: block;
}
.bullet {
    margin-right: 8px;
    font-weight: bold;
}

/* Benefits */
.benefits {
    margin: 52px 50px 0 50px;
    background-color: var(--bg-green);
    padding: 60px 50px;
    border-radius: 12px;
}
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    padding-top: 60px;
    padding-bottom: 0px;
    width: 100%;
}
.benefits-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.benefits-list.left-col {
    width: 45%;
    padding-left: 0;
}
.benefits-list.right-col {
    width: 55%;
    padding-left: 0;
}
.benefits-list li {
    font-size: 22px;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-brown);
    display: block;
}
.squiggly-bullet {
    width: 16px;
    height: auto;
    margin-right: 15px;
    vertical-align: middle;
}

/* Process Timeline */
.process {
    background-color: var(--bg-olive);
    color: white;
    margin: 52px 50px 0 50px;
    padding: 50px;
    border-radius: 12px;
}
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 60px 0 20px;
    margin-top: 40px;
}
.timeline-step {
    flex: 1;
    position: relative;
    z-index: 2;
    padding-right: 20px;
}
.timeline-step::after {
    content: '';
    position: absolute;
    top: 22.5px;
    left: 45px;
    right: 0;
    z-index: -1;
}
.step-1::after { border-top: 2px dotted var(--text-blue); }
.step-2::after { border-top: 2px dashed var(--text-blue); }
.step-3::after { border-top: 2px solid var(--text-blue); }
.step-4::after { display: none; }

.timeline-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
}
.step-1 .timeline-circle { border: 2px dotted var(--text-blue); }
.step-2 .timeline-circle { border: 2px dashed var(--text-blue); }
.step-3 .timeline-circle { border: 2px solid var(--text-blue); }
.step-4 .timeline-circle { 
    background-color: var(--text-blue);
    border: none;
}

.timeline-step .step-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: var(--font-serif);
    font-weight: 500;
}
.timeline-step .step-desc {
    font-size: 18px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    padding-right: 20px;
}

/* About */
.about {
    margin-top: 130px;
    padding: 0 50px 120px 50px;
}
.about-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
.about-content {
    width: 48%;
    font-size: 26px;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-brown);
    line-height: 1.4;
    text-wrap: pretty;
}
.about-content p {
    margin-bottom: 25px;
}
.mt-gap {
    height: 18px;
}

/* Footer */
.footer {
    background-color: var(--text-blue);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 130px 50px 50px;
    position: relative;
    z-index: 3;
    color: white;
}
.footer-bottom-left {
    flex: 1;
    display: flex;
    align-items: center;
}
.footer-huge-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}
.footer-right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
}
.footer-right-content .cta-title {
    color: white;
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: var(--font-body);
}
.footer-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}
.btn-pill {
    border: none;
    background-color: white;
    color: var(--text-blue);
    padding: 18px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 24px;
    border-radius: 50px;
    transition: background 0.3s, color 0.3s;
    font-family: var(--font-body);
}
.btn-pill:hover {
    background-color: var(--bg-green);
    color: var(--text-blue);
}
.footer-links-grid {
    display: flex;
    gap: 120px;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-col.spaced-col {
    gap: 35px;
}
.footer-link-header {
    color: white;
    text-decoration: none;
    font-size: 22px;
    text-transform: uppercase;
    font-family: var(--font-serif);
}
.footer-sublinks {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.footer-sublinks a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-family: var(--font-body);
}
.footer-link-header:hover, .footer-sublinks a:hover {
    text-decoration: underline;
}

/* WORK PAGE */
.work-main {
    width: 100%;
}
.work-header {
    margin-top: 60px;
    margin-bottom: 50px;
}
.work-gallery {
    padding: 0 0 100px 0;
}
.work-grid {
    display: block;
}
.work-item {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 20px;
    background-color: var(--bg-sand);
}
.work-item img {
    width: 100%;
    height: auto;
    display: block;
}
.col-span-1 {
    grid-column: span 1;
}
.col-span-2 {
    grid-column: span 2;
}
.col-span-3 {
    grid-column: span 3;
}
.hover-effect {
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.hover-effect:hover {
    opacity: 0.9;
}

/* Scroll Fade Animations */
.fade-section {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    will-change: opacity, transform;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-section.fade-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    /* Global Spacing Utilities */
    .ml-41, .ml-49, .ml-50, .ml-55, .ml-63, .ml-115 {
        margin-left: 20px;
    }
    .svg-divider {
        margin-right: 20px;
    }
    
    /* Header */
    .header {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 20px 20px 30px 20px;
    }
    .header-logo-link {
        flex: 0 0 auto;
        order: 1;
        margin-left: -5px; /* Offset to align visually with SERVICES text */
    }
    .header-logo-img {
        width: 185px; /* 20% bigger than 154px */
        mix-blend-mode: multiply;
    }
    .nav-container {
        display: contents;
    }
    .header .btn {
        flex: 0 0 auto;
        order: 2;
        padding: 11px 18px; /* 10% bigger padding */
        font-size: 18px; /* 10% bigger font */
        white-space: nowrap;
    }
    .nav {
        width: 100%;
        order: 3;
        margin-top: 15px; /* Brought closer to logo */
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    .nav a {
        font-size: 20px; /* 10% bigger than 18px */
    }
    
    /* Hero */
    .hero-new {
        margin-top: 60px;
        padding: 0 20px;
        gap: 20px;
    }
    .hero-visuals {
        flex-direction: column;
    }
    .hero-visual-left, .hero-visual-right {
        width: 100%;
    }
    .hero-text-row {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
    .hero-text-left, .hero-text-right {
        width: 100%;
    }
    .hero-new h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }
    .hero-new p {
        font-size: 18px;
    }
    
    /* Gallery Section */
    .gallery-section {
        margin-top: 104px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .view-more-label {
        right: 20px;
        top: -30px;
        font-size: 14px;
    }
    
    /* Services Section */
    .services {
        margin-top: 30px;
    }
    .section-title {
        font-size: 32px;
        line-height: 40px;
        padding-left: 20px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .services-grid {
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
        gap: 15px;
    }
    .service-card {
        flex: 1 1 100%;
        padding: 25px 20px;
    }
    
    /* Pricing Section */
    .pricing-header {
        margin-top: 104px;
    }
    .pricing {
        margin-top: 20px;
        padding-top: 10px;
    }
    .pricing-card {
        flex-direction: column;
        padding: 40px 30px;
        margin-left: 20px;
        margin-right: 20px;
        max-width: 100%;
    }
    .pricing-num {
        width: 100%;
        padding-left: 0;
        margin-bottom: 5px;
    }
    .pricing-content {
        max-width: 100%;
        padding-left: 0;
    }
    .pricing-content h2 {
        font-size: 32px;
        line-height: 1.15;
    }
    .pricing-content p {
        font-size: 18px;
    }
    .price {
        font-size: 26px;
        margin-top: 15px;
    }
    .pricing-includes {
        margin-left: 0;
        margin-top: 30px;
        max-width: 100%;
        font-size: 16px;
    }
    .pl-example {
        margin-left: 0;
    }
    
    /* Benefits Section */
    .benefits {
        margin-top: 104px;
    }
    .benefits-grid {
        flex-direction: column;
    }
    .benefits-list.left-col,
    .benefits-list.right-col {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .benefits-list li {
        font-size: 18px;
    }
    .benefits-list .bullet {
        font-size: 18px;
    }
    
    /* Process Section */
    .process {
        padding: 60px 0;
    }
    .process-timeline {
        flex-direction: column;
        padding: 40px 20px 0;
        gap: 40px;
    }
    .timeline-line {
        top: 40px;
        bottom: 0;
        left: 40px;
        right: auto;
        width: 1px;
        height: 80%;
    }
    .timeline-step {
        padding-right: 0;
        padding-left: 50px;
    }
    .timeline-circle {
        position: absolute;
        left: 0;
        top: 0;
        margin-bottom: 0;
    }
    
    /* About Section */
    .about {
        margin-top: 104px;
        padding-bottom: 60px;
    }
    .about-content {
        margin-left: 0;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 18px;
    }
    
    /* Footer */
    .footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 60px 20px;
        gap: 40px;
    }
    .footer-huge-logo {
        font-size: 80px;
    }
    .footer-right-content {
        align-items: center;
    }
    .footer-right-content .cta-title {
        font-size: 28px;
        text-align: center;
    }
    .footer-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .btn-pill {
        width: 100%;
        text-align: center;
    }
    .footer-links-grid {
        flex-direction: column;
        gap: 40px;
        margin-top: 20px;
    }
}
/* Pill Shaped Buttons */
.btn,
.btn-outline-white {
    border-radius: 100px !important;
}

/* Staggered Image Gallery */
.staggered-gallery {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    gap: 120px; /* Space between rows */
}

.gallery-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}

.gallery-item {
    width: 48%; /* Almost half the container */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px; /* Optional, subtle border radius for images */
}

.gallery-item.offset-down {
    margin-top: 100px; /* Stagger amount */
}

/* Float the badge inside the wrapper, over the image or above/below it */
/* By default, we place it slightly overlapping or just near the edge */
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1024px) {
    .staggered-gallery {
        padding: 40px 20px;
        gap: 60px;
    }
    .gallery-row {
        flex-direction: column;
        gap: 60px;
    }
    .gallery-item {
        width: 100%;
    }
    .gallery-item.offset-down {
        margin-top: 0; /* Remove stagger on mobile */
    }
}

/* Work Page Carousel */
.work-carousel-section {
    padding: 0 50px 40px;
    display: flex;
    justify-content: center;
}

.work-carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.work-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.work-carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-carousel-slide img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px; /* Slight rounding for inner image */
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    color: #4f433a;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 1);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

@media (max-width: 768px) {
    .work-carousel-section {
        padding: 0 20px 20px;
    }
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    .carousel-arrow.prev {
        left: 10px;
    }
    .carousel-arrow.next {
        right: 10px;
    }
}
