@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700,800,900&display=swap');

:root {
    --bg-color: #050505;
    --text-color: #f0f0f0;
    --accent-line: #333333;
    --cursor-size: 10px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.header.scrolled .logo,
.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.header.scrolled .nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

.header.scrolled .logo-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.header.scrolled .hamburger-menu {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled .hamburger-menu span {
    background-color: #ffffff;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    transition: color 0.3s ease;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: 'Satoshi', sans-serif;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 1);
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.85);
    transition: width 0.3s ease;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.book-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: max-content;
    cursor: none;
    background: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.book-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.book-button:hover {
    border-color: #fff;
    color: #000;
}

.book-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.book-button .btn-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.book-button .btn-icon {
    width: 20xx;
    height: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.book-button .btn-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.book-button:hover .btn-icon {
    transform: translateX(10px) rotate(-45deg);
}

.hamburger-menu {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
    padding: 0;
}

.hamburger-menu:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.hamburger-menu span {
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background-color: #ffffff;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main content spacing */
.main-content {
    margin-top: 0;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-image: url('hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    padding: 8rem 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: end;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    position: relative;
    z-index: 10;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #C9A66B;
    font-size: 1.25rem;
    line-height: 1;
}

.rating-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.hero-headline {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 200px;
    cursor: none;
    font-family: 'Inter', sans-serif;
}

.cta-button .btn-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.cta-button .btn-icon {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.cta-button .btn-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.cta-button:hover .btn-icon {
    transform: translateX(10px) rotate(-45deg);
}

.cta-primary {
    background: transparent;
    color: #fff;
}

.cta-primary:hover {
    border-color: #fff;
    color: #000;
}

.cta-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-secondary {
    background: transparent;
    color: #fff;
}

.cta-secondary:hover {
    border-color: #fff;
    color: #000;
}

.cta-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-overlay-box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 250px;
    height: min-content;
    padding: 6px 6px 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    opacity: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    justify-self: end;
    align-self: end;
}

.overlay-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.fading-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.gallery-image.active {
    opacity: 1;
}

.overlay-text {
    font-family: 'Satoshi', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    color: #000000;
}

.overlay-text a {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.overlay-text a:hover {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 6rem 1rem 4rem;
        gap: 3rem;
    }

    .hero-overlay-box {
        justify-self: end;
        width: 220px;
        padding: 6px 6px 10px;
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .book-button {
        padding: 1rem 1.5rem;
        min-width: auto;
        font-size: 0.95rem;
    }
    
    .book-button .btn-label {
        font-size: 0.95rem;
    }
    
    .book-button .btn-icon {
        width: 24px;
        height: 24px;
    }

    .hamburger-menu {
        width: 44px;
        height: 44px;
    }

    .hero-container {
        padding: 5rem 1rem 3rem;
        grid-template-columns: 1fr;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        gap: 0.75rem;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        min-width: auto;
    }
    
    .cta-button .btn-label {
        font-size: 0.95rem;
    }
    
    .cta-button .btn-icon {
        width: 24px;
        height: 24px;
    }

    .hero-overlay-box {
        width: 200px;
        padding: 6px 6px 10px;
    }

    .overlay-text {
        font-size: 1rem;
    }
}



 /* CUSTOM CURSOR (The Spotlight) */
 .cursor-light {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: white;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference; /* THIS CREATES THE WOW EFFECT */
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.1s ease-out;
    z-index: 9999;
    filter: blur(0px);
}


/* MAIN SECTION */
.studio-section {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
    border-top: 1px solid var(--accent-line);
    border-bottom: 1px solid var(--accent-line);
}

/* LEFT COLUMN: INTRO */
.col-left {
    width: 50%;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--accent-line);
    position: relative;
}

.studio-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0; /* JS Fade in */
    transform: translateY(20px);
}

.studio-section h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: 4vw;
    font-weight: 600;
    margin-bottom: 1rem;
}

.studio-section h1 span {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

.intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    color: #888;
    opacity: 0;
    transform: translateY(30px);
}

/* RIGHT COLUMN: FEATURES */
.col-right {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2x3 Grid */
    grid-auto-rows: 1fr;
}

.feature-box {
    border-bottom: 1px solid var(--accent-line);
    border-right: 1px solid var(--accent-line); /* Grid lines */
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: background 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

/* Remove right border for even children to prevent double border on edge */
.col-right .feature-box:nth-child(2n) {
    border-right: none;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    margin-bottom: 2rem;
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.feature-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* HOVER EFFECTS */
.feature-box:hover .icon-wrapper svg {
    transform: scale(1.2) rotate(-10deg);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .studio-section h1 {
        font-size: 28px;
    }
    .studio-section { flex-direction: column; }
    .col-left, .col-right { width: 100%; }
    .col-left { border-right: none; border-bottom: 1px solid var(--accent-line); padding: 4rem 2rem; }
    .col-right { grid-template-columns: 1fr; } /* Stack features on mobile */
    .col-right .feature-box:nth-child(odd) { border-right: none; }
    :root { --cursor-size: 0px; } /* Disable custom cursor on mobile */
    * { cursor: auto; }
}

/* --- SERVICES SECTION --- */
.services-section {
    width: 100%;
    position: relative;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--accent-line);
}

.section-header {
    padding: 2rem 2rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    white-space: nowrap;
}

.header-line {
    width: 100%;
    height: 1px;
    background-color: var(--accent-line);
}

.services-container {
    display: flex;
    width: 100%;
    height: 85vh; /* Tall, imposing section */
    min-height: 600px;
}

/* THE COLUMN */
.service-col {
    flex: 1; /* All start equal */
    border-right: 1px solid var(--accent-line);
    position: relative;
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
    overflow: hidden;
    cursor: none; /* Keep custom cursor logic */
}

.service-col:last-child {
    border-right: none;
}

/* CONTENT CONTAINER */
.service-content {
    height: 100%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

/* HOVER STATE (The Wow Factor) */
.service-col:hover {
    flex: 2.5; /* Expands significantly */
    background-color: #ffffff;
}

/* Invert text colors on hover */
.service-col:hover .service-content {
    color: #000000;
}

.service-col:hover .service-desc {
    color: #333;
    opacity: 1;
    transform: translateY(0);
}

.service-col:hover .service-icon {
    transform: scale(1.1);
}

.service-col:hover .service-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ELEMENTS */
.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 2rem;
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.service-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 3.5vw;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1rem;
    /* Prevent text wrapping weirdly during expansion animation */
    white-space: nowrap; 
}

.service-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 350px;
    color: #888;
    /* Hide desc initially on small screens or keep subtle */
    transition: all 0.5s ease;
}

.service-bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-tag {
    font-family: 'Satoshi', sans-serif;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.period {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
}

/* CTA BUTTON */
.service-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: inherit; /* Takes parent color (white or black) */
    opacity: 0; /* Hidden by default */
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s; /* Slight delay */
}

.service-cta svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.service-cta:hover svg {
    transform: translateX(10px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-container {
        flex-direction: column;
        height: auto;
    }

    .service-col {
        height: 400px; /* Fixed height per card */
        border-right: none;
        border-bottom: 1px solid var(--accent-line);
    }

    .service-col:hover {
        flex: 1; /* Disable flex growth on mobile */
        background-color: var(--bg-color); /* Disable white flash if preferred, or keep it */
    }
    
    /* Keep text visible on mobile */
    .service-col:hover .service-content { color: #fff; } 
    .service-col:hover .service-cta { opacity: 1; transform: translateY(0); }
    .service-cta { opacity: 1; transform: translateY(0); color: #fff; }
    
    .service-title { font-size: 3rem; white-space: normal; }
}

/* --- PORTFOLIO SECTION --- */
.portfolio-section {
    background-color: var(--bg-color);
    position: relative;
    padding-bottom: 8rem;
    z-index: 5;
    overflow: hidden; /* Important for parallax */
}

.gallery-wrapper {
    padding: 4rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start; /* Allow columns to move independently */
}

/* IMAGE CARD */
.gallery-item {
    margin-bottom: 2rem;
    position: relative;
    /* Determine aspect ratio randomly or fixed for masonry feel */
    width: 100%;
}

.img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Default aspect ratio, images will cover */
    aspect-ratio: 3/4; 
    cursor: none; /* We use custom cursor */
}

/* Specific aspect ratios for visual variety */
.col-fast .gallery-item:nth-child(odd) .img-wrapper { aspect-ratio: 3/5; }
.col-slow .gallery-item:nth-child(even) .img-wrapper { aspect-ratio: 1/2; }

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    
    /* THE B&W AESTHETIC */
    filter: grayscale(100%) contrast(110%) brightness(90%);
    transition: filter 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s ease;
    will-change: transform, filter;
}

/* HOVER EFFECT: DEVELOPING THE PHOTO */
.img-wrapper:hover img {
    filter: grayscale(0%) contrast(100%) brightness(100%);
    transform: scale(1.05);
}

/* METADATA BADGES */
.overlay-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.img-wrapper:hover .overlay-badges {
    opacity: 1;
    transform: translateY(0);
}

.badge {
    font-family: 'Space Mono', monospace; /* Using technical font */
    font-size: 0.7rem;
    color: #000;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    backdrop-filter: blur(4px);
    font-weight: 700;
    text-transform: uppercase;
}

/* CTA FOOTER */
.portfolio-footer {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.archive-btn {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    overflow: hidden;
}

.btn-text {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.btn-count {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

/* CTA HOVER FILL */
.archive-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.archive-btn:hover {
    border-color: #fff;
}

.archive-btn:hover::before {
    transform: translateY(0);
}

.archive-btn:hover .btn-text,
.archive-btn:hover .btn-count {
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: 1fr; /* Single column */
        gap: 4rem;
    }
    
    .gallery-col {
        transform: none !important; /* Disable parallax on mobile */
    }

    .img-wrapper {
        aspect-ratio: 4/5 !important;
    }

    .btn-text {
        font-size: 2rem;
    }
    
    /* Show badges always on mobile so they know details */
    .overlay-badges {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    background-color: var(--bg-color);
    padding-bottom: 8rem;
    position: relative;
    border-bottom: 1px solid var(--accent-line);
}

.testimonial-grid {
    display: grid;
    /* Desktop: 3 columns. Rows auto-sized. */
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1px; /* 1px gap for the border effect */
    background-color: var(--accent-line); /* This creates the borders between cards */
    border-top: 1px solid var(--accent-line);
    border-bottom: 1px solid var(--accent-line);
    max-width: 1400px;
    margin: 4rem auto 0;
}

/* GENERAL CARD STYLES */
.review-card {
    background-color: var(--bg-color); /* Black background */
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: none; /* Custom cursor */
}

/* HOVER EFFECT: INVERT COLORS */
.review-card:not(.featured-card):hover {
    background-color: #ffffff;
    transform: scale(1.02); /* Pop out slightly */
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.review-card:not(.featured-card):hover .review-quote,
.review-card:not(.featured-card):hover .review-stars,
.review-card:not(.featured-card):hover .author-name {
    color: #000000;
}

.review-card:not(.featured-card):hover .shoot-type {
    color: #333;
    border-color: #000;
}

/* GRID PLACEMENT LOGIC */

/* The Small Cards on the Left (1 & 2) */
.review-card:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
.review-card:nth-child(2) { grid-column: 1 / 2; grid-row: 2 / 3; }

/* The Featured Card (Takes up 2x2 space on Top Right) */
.featured-card {
    grid-column: 2 / 4;
    grid-row: 1 / 3; /* Spans 2 rows height */
    position: relative;
    padding: 0; /* Full bleed image */
    display: flex;
    align-items: flex-end;
}

/* The Bottom Row Cards (4, 5, 6) */
.review-card:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
.review-card:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 4; }
.review-card:nth-child(6) { grid-column: 3 / 4; grid-row: 3 / 4; }

/* CONTENT STYLING */
.review-stars {
    color: #666; /* Dim stars initially */
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.review-quote {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    border: 1px solid #333;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    transition: color 0.3s ease;
}

.shoot-type {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* FEATURED CARD STYLING */
.featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.6s ease, transform 0.6s ease;
    z-index: 1;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, transparent 60%);
    z-index: 2;
}

.featured-content {
    position: relative;
    z-index: 3;
    padding: 4rem;
    width: 100%;
}

.featured-quote {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 2rem;
    max-width: 90%;
}

.featured-card .review-stars { color: #fff; }
.featured-card .author-name { font-size: 1.2rem; }
.featured-card .shoot-type { color: #aaa; border-left: 1px solid #666; padding-left: 10px; margin-left: 10px; }

/* HOVER FEATURED */
.featured-card:hover .featured-bg {
    filter: grayscale(0%); /* Color reveal on hover */
    transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0;
        border: none;
        margin: 0;
        width: 100%;
    }

    /* Reset all grid positioning for mobile stack */
    .review-card, .featured-card {
        grid-column: auto !important;
        grid-row: auto !important;
        border-bottom: 1px solid var(--accent-line);
        width: 100%;
    }

    .featured-card {
        height: 500px; /* Force height for image card on mobile */
    }

    .featured-quote { font-size: 1.8rem; }
    
    /* Disable pop-out on mobile */
    .review-card:not(.featured-card):hover {
        transform: none;
        box-shadow: none;
    }
}

/* --- CTA SECTION --- */
.cta-section {
    position: relative;
    width: 100%;
    height: 80vh; /* Takes up most of the screen */
    min-height: 600px;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--accent-line);
}

/* BACKGROUND MARQUEE */
.marquee-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%) rotate(-5deg) scale(1.1); /* Tilted slightly for style */
    opacity: 0.03; /* Very subtle */
    pointer-events: none;
    z-index: 1;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scrollText 40s linear infinite;
}

.marquee-track span {
    font-size: 8rem;
    font-weight: 600;
    margin-right: 2rem;
    color: transparent;
    -webkit-text-stroke: 2px #fff; /* Outline text */
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* MAIN CONTENT */
.cta-container {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.cta-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    line-height: 0.9;
    margin-bottom: 4rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title span {
    display: block;
}

.cta-title .line-1 {
    font-size: clamp(3rem, 5vw, 5rem);
    color: #888; /* Grey top line */
}

.cta-title .line-2 {
    font-size: clamp(3rem, 5vw, 5rem);
    color: #fff; /* White bottom line */
}

/* BUTTONS LAYOUT */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* SHARED BUTTON STYLES */
.big-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 300px;
    cursor: none; /* Custom cursor */
}

.btn-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.btn-icon {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* HOVER FILL EFFECT (The Swipe) */
.big-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* PRIMARY BTN STYLES */
.primary-btn {
    background: transparent;
    color: #fff;
}

.primary-btn:hover {
    border-color: #fff;
    color: #000;
}

.primary-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* SECONDARY BTN STYLES */
.outline-btn {
    background: transparent;
    color: #fff;
}

.outline-btn:hover {
    border-color: #fff;
    color: #000; /* Invert text */
}

.outline-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* ICON ANIMATION */
.big-btn:hover .btn-icon {
    transform: translateX(10px) rotate(-45deg); /* Arrow shoots up-right */
}
.outline-btn:hover .btn-icon {
    transform: translateX(10px); /* Just moves right */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-section { height: auto; padding: 6rem 0; }
    .cta-buttons { flex-direction: column; gap: 1rem; }
    .big-btn { width: 100%; }
    .marquee-track span { font-size: 4rem; }
}

/* --- FOOTER SECTION --- */
.footer-section {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 6rem 2rem 2rem;
    position: relative;
    border-top: 1px solid var(--accent-line);
    overflow: hidden;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

/* TOP ROW */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}

/* Newsletter Column */
.footer-brand-col {
    flex: 1;
    min-width: 300px;
}

.footer-heading {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-sub {
    font-family: 'Inter', sans-serif;
    color: #888;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-form {
    display: flex;
    border-bottom: 1px solid #333;
    max-width: 400px;
    padding-bottom: 0.5rem;
    transition: border-color 0.3s ease;
}

.footer-form:focus-within {
    border-color: #fff;
}

.minimal-input {
    background: none;
    border: none;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.arrow-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.arrow-btn:hover {
    transform: translateX(5px);
}

.arrow-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Links Grid */
.footer-nav-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.nav-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.col-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    width: max-content;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-address {
    font-family: 'Inter', sans-serif;
    color: #aaa;
    font-style: normal;
    line-height: 1.6;
}

/* BIG TYPOGRAPHY */
.footer-big-type {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--accent-line);
    border-bottom: 1px solid var(--accent-line);
    padding: 1rem 0;
}

.giant-text {
    font-family: 'Syne', sans-serif;
    font-size: 18vw; /* Responsive huge size */
    font-weight: 800;
    line-height: 0.8;
    color: var(--bg-color);
    -webkit-text-stroke: 2px #333; /* Outline style */
    display: block;
    text-align: center;
    letter-spacing: -0.05em;
    transition: all 0.5s ease;
    cursor: default;
}

.footer-big-type:hover .giant-text {
    color: #fff; /* Fill on hover */
    -webkit-text-stroke: 0px transparent;
}

/* BOTTOM & BACK TO TOP */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1rem;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: #666;
}

.legal-group {
    display: flex;
    gap: 1.5rem;
}

.legal-group a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-group a:hover {
    color: #fff;
}

/* Back to Top Button */
.back-to-top {
    position: relative;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: scale(1.1);
}

.circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
}

.circle-text text {
    fill: #fff;
    font-family: 'Space Mono', monospace;
    letter-spacing: 2px;
}

.center-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

@keyframes rotateText {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-top { flex-direction: column; gap: 4rem; }
    .footer-nav-grid { gap: 2rem; width: 100%; justify-content: space-between; }
    .giant-text { font-size: 22vw; }
    .footer-bottom { flex-direction: column-reverse; align-items: center; gap: 2rem; text-align: center; }
}
@media (max-width: 600px) {
    .footer-nav-grid { flex-direction: column; }
    .footer-heading { font-size: 2rem; }
}