:root {
    --bg: #ffffff;
    --text-pri: #111111;
    --text-sec: #888888;
    --accent: #f2f2f2;
    --accent-border: #dddddd;
    --card-bg: rgb(242, 244, 247);
}



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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-pri);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -0.04em;
    overflow-x: hidden;
    position: relative;
    line-height: 1.1;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Aperture-style page loader */
#loader {
    position: fixed;
    inset: 0;
    z-index: 20000;
    pointer-events: all;
    display: block;
}

#loader.is-hidden {
    display: none;
    pointer-events: none;
}

.loader-top,
.loader-bottom {
    position: fixed;
    left: 0;
    width: 100%;
    height: 50%;
    background: #ffffff;
    z-index: 20001;
    will-change: transform;
}

.loader-top {
    top: 0;
}

.loader-bottom {
    bottom: 0;
}

.loader-content {
    position: fixed;
    inset: 0;
    z-index: 20002;
    pointer-events: none;
}

#loader .polaroid {
    position: absolute;
    width: 156px;
    height: 206px;
    background: #f5f5f5;
    padding: 8px 8px 32px;
    border-radius: 8px;
    border: 1px solid #bfbfbf4a;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(120px);
    will-change: transform, opacity;
}

#loader .polaroid img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

#loader .polaroid.p1 {
    left: 20%;
    top: 20%;
    transform: translate(-50%, 0) rotate(-8deg);
}

#loader .polaroid.p2 {
    left: 50%;
    top: 10%;
    transform: translate(-50%, 0) rotate(0deg);
}

#loader .polaroid.p3 {
    left: 80%;
    top: 20%;
    transform: translate(-50%, 0) rotate(6deg);
}

#loader .polaroid.p4 {
    left: 30%;
    top: 54%;
    transform: translate(-50%, 0) rotate(-5deg);
}

#loader .polaroid.p5 {
    left: 70%;
    top: 54%;
    transform: translate(-50%, 0) rotate(4deg);
}

.aperture-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 9vw;

    transform: scale(0.6);
    transform-origin: 50% 50%;
    opacity: 0;
    will-change: transform, opacity;
}

.aperture-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

@media (max-width: 900px) {
    #loader .polaroid {
        width: 124px;
        height: 166px;
        padding: 8px 8px 24px;
        border-radius: 10px;
    }

    #loader .polaroid img {
        width: 100%;
        height: 134px;
        border-radius: 7px;
    }

    #loader .polaroid.p1,
    #loader .polaroid.p2,
    #loader .polaroid.p3 {
        top: 24%;
    }

    #loader .polaroid.p4,
    #loader .polaroid.p5 {
        top: 56%;
    }

    #loader .polaroid.p2 {
        top: 14%;
    }

    .aperture-icon {
        position: absolute;
        inset: 0;
        margin: auto;
        width: 90px;
    }
}

@media (max-width: 420px) {
    #loader .polaroid {
        width: 70px;
        height: 104px;
        padding: 4px 4px 20px;
        border-radius: 6px;
    }

    #loader .polaroid img {
        width: 100%;
        height: 86px;
        border-radius: 3px;
    }

}

.container {
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* Typography */
h2 {
    font-size: 3.8rem;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: -0.05em;
}

.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 0.05em;
}

/* Header */
.top-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;

}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    width: 8vw;
    cursor: pointer;
}

.top-header .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Bottom Navbar */
.bottom-nav {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #050505;
    padding: 12px 32px 12px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 32px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    white-space: nowrap;
}

.bottom-nav.nav-transition {
    transition: opacity 0.4s ease-out, transform 0.4s ease-out !important;
}

.bottom-nav.nav-hidden {
    transform: translate(-50%, 150px) !important;
    opacity: 0 !important;
    pointer-events: none;
}

.bottom-nav.s41-hidden-initially {
    opacity: 0;
    transform: translate(-50%, 150px);
    pointer-events: none;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.bottom-nav.s41-hidden-initially.s41-show {
    opacity: 1;
    transform: translateX(-50%);
    pointer-events: auto;
}

.bottom-nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav-logo svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
}

.bottom-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.bottom-nav-links a {
    color: #ffffff;
    font-size: 1rem;
    font-family: Inter;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.bottom-nav-links a:hover {
    opacity: 0.7;
}

.hamburger-menu {
    display: none;
    color: #ffffff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .bottom-nav {
        padding: 12px 24px;
        bottom: 20px;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .bottom-nav-logo {
        order: 2;
    }

    .bottom-nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 20px;
        gap: 20px;
        order: 1;
    }

    .bottom-nav.menu-open .bottom-nav-links {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 3;
    }
}

/* Hero */
.hero {
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 150px;
    padding-bottom: 60px;
}

.hero-text-container {
    text-align: center;
    z-index: 2;
    position: relative;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.studio-services {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.04em;
    font-size: clamp(2.8rem, 7.5vw, 7.5rem);
    line-height: 1;
    color: var(--text-pri);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 12px;
}

.hero-reg {
    font-size: clamp(1rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-top: -0.15em;
    margin-left: 0.3em;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 1.2vw, 1.2rem);
    color: rgba(0, 0, 0, .56);
    font-weight: 400;
    letter-spacing: -0.04em;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.hero-carousel {
    width: 100vw;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    display: flex;
    white-space: nowrap;
    margin-top: 40px;

}

.hero-carousel-track {
    display: flex;
    width: max-content;
    animation: hero-scroll 45s linear infinite;
}

.hero-carousel-group {
    display: flex;
    gap: 8px;
    padding-right: 8px;
    /* Matches gap for seamless continuous scroll */
}

.hero-img-wrap {
    width: clamp(260px, 20vw, 360px);
    aspect-ratio: 9/13;
    flex-shrink: 0;
    border-radius: 40px;
    overflow: hidden;
    background: var(--card-bg);
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

@keyframes hero-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 130px;
        min-height: 85vh;
    }

    .hero-carousel-group {
        gap: 10px;
    }

    .hero-img-wrap {
        border-radius: 24px;
        width: 180px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .header-logo {
        width: 80px;
    }
}

/* Marquee */
.marquee-container {
    padding: 40px 0;
    border-top: 1px solid var(--accent-border);
    border-bottom: 1px solid var(--accent-border);
    overflow: hidden;
    display: flex;
    background: var(--card-bg);
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    padding: 8px;
    align-items: center;
    gap: 2rem;
    animation: marquee 20s linear infinite;
}

.marquee-content.dup {
    /* second instance for seamless loop */
    padding-left: 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.pill {
    background: var(--accent);
    border: 1px solid var(--accent-border);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    color: var(--text-sec);
}

/* Brands carousel */
.brands-section {
    padding-top: 10px;
    padding-bottom: 60px;
}

.brands-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    text-align: center;
}

.brands-header .section-pill {
    margin-bottom: 0;
}

.brands-header h2 {
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #000000;
}

.brands-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.brands-carousel::before,
.brands-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-carousel::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 35%, rgba(255, 255, 255, 0));
}

.brands-carousel::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 35%, rgba(255, 255, 255, 0));
}

.brands-track {
    display: flex;
    width: max-content;
    animation: brands-scroll 26s linear infinite;
}

.brands-group {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 14px;
}

.brand-logo-card {
    width: clamp(120px, 10vw, 160px);
    height: clamp(64px, 5.3vw, 80px);
    flex-shrink: 0;
    border: 1px solid var(--accent-border);
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.brand-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.86;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.brand-logo-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes brands-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding-top: 0;
        padding-bottom: 44px;
    }

    .brands-header {
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
        text-align: center;
    }

    .brands-carousel::before,
    .brands-carousel::after {
        width: 36px;
    }

    .brands-group {
        gap: 10px;
        padding-right: 10px;
    }

    .brand-logo-card {
        width: 118px;
        height: 62px;
        border-radius: 14px;
        padding: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brands-track {
        animation: none;
    }
}

/* Philosophy Parallax */
.philosophy-section {
    position: relative;
    min-height: 240vh;
    background-color: #ffffff;
}

.philosophy-content {
    position: sticky;
    top: 0;
    height: 90vh;
    z-index: 1;
    /* Below images */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    margin-top: -15vw;
}

.studio-amenities h2 {
    font-weight: 600;
}

.studio-services h2 {
    font-weight: 600;
}

.philosophy-text {
    font-size: 3rem;
    font-weight: 500;
    max-width: 900px;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #111111;
}

.philosophy-word {
    opacity: 0.15;
    display: inline-block;
    padding: 0 4px;
}

.philosophy-img {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    /* Overlap text */
    object-fit: cover;
}

.img-1 {
    left: 5%;
    top: 50%;
    width: 14vw;
    transform: translateY(150px);
    aspect-ratio: 3/4;
}

.img-2 {
    right: 5%;
    top: 40%;
    width: 18vw;
    aspect-ratio: 3/4;
    transform: translateY(150px);
}

.img-3 {
    left: 23%;
    top: 30%;
    width: 21vw;

    /* For image 3 we handle the X centering explicitly */
    margin-left: -210px;
    transform: translateY(150px);
}

.img-4 {
    left: 10%;
    top: 82%;
    width: 80%;
    height: 38vw;
    transform: translateY(150px);
    aspect-ratio: 16/9;
}

.img-5 {
    right: 10%;
    top: 64%;
    width: 17vw;
    aspect-ratio: 4/3;
    transform: translateY(150px);
}

@media (max-width: 768px) {
    .philosophy-text {
        font-size: 1.6rem;
        padding: 0 16px;
    }

    .philosophy-img {
        /* scale down images for mobile */
        width: 120px;
    }

    .img-3 {
        margin-left: -90px;
    }

    .img-4 {
        width: 80% !important;
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-label {
    background: rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.marquee-tight {
    padding: 0;
}

.blog-main-pill {
    align-self: flex-start;
    margin-bottom: 16px;
}

.blog-main-title {
    font-size: 2rem;
    margin-bottom: 8px;
}

.blog-list-pill {
    align-self: flex-start;
    padding: 4px 10px;
    font-size: 0.7rem;
}

/* Masonry-style asymmetrical grid */
.gallery-item:nth-child(1) {
    grid-column: span 5;
    aspect-ratio: 4/5;
}

.gallery-item:nth-child(2) {
    grid-column: span 7;
    aspect-ratio: 16/9;
}

.gallery-item:nth-child(3) {
    grid-column: span 8;
    aspect-ratio: 16/9;
}

.gallery-item:nth-child(4) {
    grid-column: span 4;
    aspect-ratio: 4/5;
}

.gallery-item:nth-child(5) {
    grid-column: span 6;
    aspect-ratio: 1/1;
}

.gallery-item:nth-child(6) {
    grid-column: span 6;
    aspect-ratio: 1/1;
}

@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        flex-direction: column;
    }

    .gallery-item {
        aspect-ratio: 4/5 !important;
    }
}

/* Services */
.gallery-section {
    padding-bottom: 20px !important;
}

.s41-gallery-section {
    padding-top: 20px;
    padding-bottom: 24px;
}

.s41-gallery-header {
    margin-bottom: 54px;
}

.s41-gallery-hint {
    font-size: 0.9rem;
    color: var(--text-sec);
    margin-top: 10px;
}

.s41-gallery-showcase {
    max-width: 1080px;
    margin: 0 auto;
}

.s41-gallery-main {
    width: 100%;
    border: none;
    margin: 0;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #f3f4f5;
    cursor: pointer;
    box-shadow: 0 22px 42px rgba(14, 18, 23, 0.14);
    aspect-ratio: 16 / 9;
}

.s41-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s41-gallery-caption {
    margin-top: 12px;
    color: var(--text-sec);
    font-size: 0.95rem;
    text-align: center;
}

.s41-gallery-thumbs {
    margin-top: 16px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(86px, 8.8vw);
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x mandatory;
}

.s41-gallery-thumb {
    border: none;
    border-radius: 10px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    cursor: pointer;
    background: #f3f4f5;
    box-shadow: 0 10px 22px rgba(14, 18, 23, 0.12);
    aspect-ratio: 1 / 1;
    scroll-snap-align: start;
    border: 2px solid transparent;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

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

.s41-gallery-thumb.is-active {
    border-color: #111111;
    transform: translateY(-1px);
}

.s41-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 10, 0.88);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 14000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.s41-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.s41-lightbox-figure {
    margin: 0;
    max-width: min(92vw, 1200px);
    max-height: 86vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.s41-lightbox-figure img {
    max-width: 100%;
    max-height: calc(86vh - 40px);
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.45);
}

.s41-lightbox-figure figcaption {
    color: #eef0f1;
    font-size: 0.95rem;
    text-align: center;
    max-width: 92%;
}

.amenity-item h4 {
    font-weight: 500;
}

.s41-lightbox-close,
.s41-lightbox-nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.s41-lightbox-close:hover,
.s41-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.s41-lightbox-close {
    top: 18px;
    right: 18px;
}

.s41-lightbox-prev {
    left: 22px;
}

.s41-lightbox-next {
    right: 22px;
}

body.s41-lightbox-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .s41-gallery-main {
        border-radius: 14px;
    }

    .s41-gallery-thumbs {
        grid-auto-columns: minmax(82px, 18vw);
        gap: 8px;
    }
}

@media (max-width: 640px) {
    .s41-gallery-main {
        aspect-ratio: 5 / 4;
    }

    .s41-gallery-thumbs {
        grid-auto-columns: minmax(74px, 22vw);
        gap: 8px;
    }

    .s41-gallery-header {
        margin-bottom: 14px;
    }

    .s41-lightbox {
        padding: 10px;
    }

    .s41-lightbox-nav {
        width: 40px;
        height: 40px;
        bottom: 18px;
        top: auto;
    }

    .s41-lightbox-prev {
        left: 18px;
    }

    .s41-lightbox-next {
        right: 18px;
    }

    .s41-lightbox-close {
        top: 10px;
        right: 10px;
    }
}

.services-section {
    padding-top: 20px !important;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.services-info {
    flex-direction: column;
    justify-content: flex-start;
}

.section-pill {
    background: var(--card-bg);
    border: 1px solid var(--accent-border);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: var(--text-pri);
    display: inline-block;
    margin-bottom: 24px;
}

.service-info-desc {
    color: var(--text-sec);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 80%;
}

.service-features {
    margin-bottom: 40px;
}

.service-features-title {
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.service-features-list svg {
    color: var(--text-pri);
    background: #dddddd;
    border-radius: 50%;
    padding: 4px;
    width: 20px;
    height: 20px;
}

.btn-dark {
    background-color: var(--text-pri);
    color: var(--bg);
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 400;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.btn-dark:hover {
    opacity: 0.8;
}

.services-right-col {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-window.vertical-carousel-window {
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 12px;
}

.services-track.vertical-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 20px;
}

.service-card-vertical {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 100%;
    box-sizing: border-box;
}

.service-img-vt {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    object-fit: cover;
}

.service-content-vt {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-title-vt {
    font-size: 1.2rem;
    font-weight: 500;
}

.service-desc-vt {
    color: var(--text-sec);
    font-size: 0.95rem;
    line-height: 1.5;
}

.services-toggle-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 16px;
}

.circular-toggle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--accent-border);
    background-color: var(--card-bg);
    color: var(--text-pri);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.circular-toggle-btn:hover {
    background-color: var(--text-pri);
    color: var(--bg);
}

.circular-toggle-btn svg {
    transition: transform 0.3s ease;
}

.circular-toggle-btn.toggled svg {
    transform: rotate(180deg);
}

.circular-toggle-btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 900px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-info {
        position: static;
    }

    .service-img-vt {
        min-height: 200px;
    }
}

/* Bento Grid Restyled */
.benefits-section {
    padding: 100px 0;
}

.bento-header {
    text-align: center;
    margin-bottom: 48px;
}

.bento-header h2 {
    font-size: 3.8rem;
    margin: 16px 0;
    letter-spacing: -0.04em;
}

.bento-subtitle {
    color: var(--text-sec);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.3;
}

.bento-title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.bento-title-white {
    color: #fff;
    margin-top: auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.bento-col-left,
.bento-col-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bento-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    height: 350px;
}

.bento-row-mid {
    display: flex;
    height: 180px;
}

.bento-row-mid>.bento-card {
    flex: 1;
}

.bento-row-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    height: 160px;
}

.bento-card {
    background: #f6f6f7;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-card-experience {
    height: 440px;
    justify-content: flex-end;
}

.bento-card-client {
    height: 274px;
    justify-content: flex-end;
}

/* Polaroids */
.polaroids {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 200px;
    transform: translateX(-50%);
}

.polaroid {
    background: #fff;
    padding: 8px 8px 30px 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    position: absolute;
    border-radius: 4px;
    border: 1px solid #eee;
}

.polaroid img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.p-left {
    width: 100px;
    transform: rotate(-15deg);
    left: 10%;
    top: 20px;
    z-index: 1;
}

.p-right {
    width: 110px;
    transform: rotate(10deg);
    right: 5%;
    top: 40px;
    z-index: 2;
}

.p-main {
    width: 130px;
    transform: rotate(-3deg);
    left: 30%;
    top: 60px;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Client */
.hands-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.hand-img {
    width: 45%;
    height: auto;
    object-fit: contain;
}

.hand-left {
    transform: translateX(-10%) translateY(20px);
}

.hand-right {
    transform: translateX(10%) translateY(-10px);
}

/* Camera */
.bento-card-camera {
    align-items: flex-start;
    justify-content: flex-start;
}

.camera-lens {
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    width: auto;
    height: 80%;
    object-fit: contain;
    max-width: 90%;
    mix-blend-mode: multiply;
}

/* Editing Profile */
.bento-card-editing {
    padding: 32px !important;
    justify-content: flex-end;
}

.img-base,
.img-gray {
    position: absolute;
    inset: 0;
    background: url('public/fashion/lookup2.jpg') center/cover;
}

.img-gray {
    filter: grayscale(100%);
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.split-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.split-arrows {
    background: transparent;
    color: white;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 2px;
    padding: 6px;
}

.editing-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    z-index: 1;
}

/* Vision */
.bento-card-vision {
    flex-direction: row;
    align-items: center;
}

.bento-card-vision .bento-title {
    width: 45%;
}

.eyes-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 65%;
    object-fit: cover;
    mask-image: linear-gradient(to right, transparent 0%, black 30%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 100%);
}

/* Clients */
.bento-card-clients {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.clients-middle {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 4px;
}

.clients-num {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--text-pri);
}

.clients-num-plus {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--text-pri);
}

.clients-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #f6f6f7;
    margin-left: -12px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.clients-desc {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Turnaround */
.bento-card-turnaround {
    justify-content: flex-start;
    padding: 24px;
}

.turnaround-top {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1.1rem;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.clock-wrapper {
    position: absolute;
    bottom: -40px;
    right: -10px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 100%);
    border-radius: 50%;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.clock-face {
    position: relative;
    width: 100%;
    height: 100%;
}

.clock-tick {
    position: absolute;
    left: 50%;
    top: 6px;
    width: 2px;
    height: 64px;
    transform-origin: bottom center;
    margin-left: -1px;
}

.clock-tick::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #a0a0a0;
    border-radius: 2px;
}

.clock-tick-main::after {
    height: 8px;
    background: #666;
    width: 3px;
    left: -0.5px;
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    border-radius: 4px;
    z-index: 2;
}

.hand-hour {
    width: 4px;
    height: 35px;
    background: #666;
    margin-left: -2px;
    transform: rotate(120deg);
}

.hand-minute {
    width: 3px;
    height: 45px;
    background: #999;
    margin-left: -1.5px;
    transform: rotate(24deg);
}

.hand-second {
    width: 2px;
    height: 55px;
    background: #ff4d4d;
    margin-left: -1px;
    transform: rotate(210deg);
}

.hand-second::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: #ff4d4d;
    border-radius: 2px;
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border: 2px solid #fff;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        display: grid;
        gap: 24px;
        padding: 0 30px;
    }

    .bento-col-left,
    .bento-col-right,
    .bento-row-top,
    .bento-row-mid,
    .bento-row-bottom {
        display: contents;
    }

    .bento-card,
    .bento-card-experience,
    .bento-card-client,
    .bento-row-top>div,
    .bento-row-bottom>div,
    .bento-row-mid>div {
        height: 350px;
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card,
    .bento-card-experience,
    .bento-card-client,
    .bento-row-top>div,
    .bento-row-bottom>div,
    .bento-row-mid>div {
        height: 400px;
        margin: auto;
        aspect-ratio: 3/4;
    }

    .hero-carousel {
        margin-top: 0px;
    }

    .hero-text-container {
        margin-bottom: 20px;
    }
}

.amenity-item p {
    margin-top: 5px;
    color: var(--text-sec);
    font-weight: 300;
}

/* Portfolio Preview */
.portfolio-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.portfolio-header .section-pill {
    margin-bottom: 16px;
    display: inline-block;
}

.portfolio-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.portfolio-subtitle {
    color: var(--text-sec);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.featured-on {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.typewriter
{
    position: relative;
    font-family: Instrument Serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-sec);
    overflow: hidden;
    white-space: nowrap;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-top: 0;
    display: inline-block;
    min-height: 1.5em;
    min-width: 1ch;
    max-width: 100%;
    will-change: contents;
}

.developer-signature {
    text-align: center;
    padding: 15px 0 20px 0;
    width: 100%;
    z-index: 10;
    position: relative;
}

.developer-signature a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.developer-signature a:hover {
    transform: scale(1.06);
}

.developer-signature .typewriter .developer-name {
    color: rgb(88, 88, 88);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.developer-signature a:hover .typewriter .developer-name {
    color: var(--text-pri);
}

.featured-on p {
    font-size: 0.85rem;
    color: var(--text-sec);
}

.featured-logos {
    display: flex;
    gap: 32px;
    align-items: center;
    color: var(--text-pri);
}

.f-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.2rem;
    font-weight: 600;
}

.f-logo strong {
    font-size: 1.4rem;
}

.portfolio-stack {
    position: relative;
    padding-bottom: 1vh;
}

.portfolio-row {
    position: sticky;
    top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40vh;
    background: var(--bg);
    padding-bottom: 24px;
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 768px) {
    .portfolio-row {
        display: contents;
    }

    .portfolio-card-new {
        position: sticky;
        top: 100px;
        margin-bottom: 9vh;
    }

    .portfolio-row:last-child .portfolio-card-new:last-child {
        margin-bottom: 0;
    }

    .info-left {
        width: 100% !important;
    }
}

.portfolio-row:last-child {
    margin-bottom: 0;
}

.portfolio-card-new {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.portfolio-card-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.portfolio-card-new:hover .portfolio-card-img img {
    transform: scale(1.05);
    filter: blur(5px) brightness(0.7);
}

.hover-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    font-size: 6rem;
    color: white;
    font-weight: 300;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
    line-height: 1;
}

.portfolio-card-new:hover .hover-plus-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.img-corners {
    position: absolute;
    inset: 16px;
    pointer-events: none;
    z-index: 2;
}

.img-corners span {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.img-corners .tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.img-corners .tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.img-corners .bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.img-corners .br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.portfolio-card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 8px 8px 8px;
}

.info-left h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.info-left p {
    font-size: 0.85rem;
    color: var(--text-sec);
}

.info-left {
    width: 28vw;
}

.portfolio-view-more {
    width: 100px;
    background: #111111;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.82rem;
    color: #ffffff;
    font-weight: 500;
    border: 1px solid #111111;
    display: inline-block;
    cursor: pointer;
    transition: all 0.25s ease;
}

.portfolio-view-more:hover {
    background: #ffffff;
    color: #111111;
}

.portfolio-catalogue-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.portfolio-catalogue-modal.open {
    display: flex;
}

.portfolio-catalogue-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.62);
}

.portfolio-catalogue-panel {
    position: relative;
    width: min(1100px, 100%);
    max-height: 86vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    z-index: 1;
}

.extended-events-section {
    padding-top: 0;
    padding-bottom: 80px;
}

.extended-events-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.074);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.extended-events-copy {
    max-width: 700px;
}

.extended-events-copy .section-pill {
    margin-bottom: 14px;
}

.extended-events-copy h3 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.extended-events-copy p {
    color: var(--text-sec);
    font-size: 0.98rem;
    line-height: 1.5;
}

.extended-events-link {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .extended-events-section {
        padding-bottom: 52px;
    }

    .extended-events-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
}

.catalogue-header {
    margin-bottom: 18px;
}

.catalogue-header h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.catalogue-header p {
    color: var(--text-sec);
    font-size: 0.95rem;
}

.catalogue-close {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 2rem;
    line-height: 1;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #111111;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.catalogue-item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #f3f3f3;
}

.catalogue-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.catalogue-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .catalogue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .portfolio-card-info {
        gap: 14px;
        align-items: flex-start;
        flex-direction: column;
    }

    .portfolio-catalogue-modal {
        padding: 12px;
    }

    .portfolio-catalogue-panel {
        padding: 20px 14px;
        max-height: 90vh;
    }

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

/* Removed duplicate media query for portfolio-row */

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.testimonials-header .section-pill {
    background: var(--accent);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    display: inline-block;
}

.testimonials-header h2 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    font-size: 1rem;
    color: var(--text-sec);
    line-height: 1.6;
}

.testimonials {
    overflow: hidden;
    padding-bottom: 100px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    cursor: grab;
    padding: 0 40px;
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonial-card {
    background: var(--card-bg);
    border: none;
    padding: 32px 32px 40px;
    border-radius: 16px;
    width: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 4px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-sec);
    flex-grow: 1;
}

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

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-pri);
}

.author-company {
    font-size: 0.85rem;
    color: var(--text-sec);
}

/* Blog Preview */
.blog-section {
    padding: 80px 24px;
}

.blog-header-module {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.blog-header-left {
    max-width: 600px;

}

.header-left {
    cursor: pointer;
}

.blog-header-left h2 {
    font-size: 3.5rem;
    margin: 16px 0;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.blog-subtitle {
    color: var(--text-sec);
    line-height: 1.5;
    font-size: 1rem;
}

.blog-header-right {
    margin-bottom: 8px;
}

.blog-featured-card {
    display: flex;
    background-color: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 40px;
    overflow: hidden;
}

.blog-featured-image-wrapper {
    flex: 1.1;
    position: relative;
    overflow: hidden;
}

.blog-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 480px;
}

.blog-featured-content {
    flex: 0.9;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pill-black,
.pill-gear,
.pill-lighting,
.pill-editing,
.pill-business {
    border: none;
    color: #fff;
    font-weight: 500;
}

.pill-black {
    background-color: #111;
}

.pill-gear {
    background-color: #5c2d3a;
}

.pill-lighting {
    background-color: #3b533e;
}

.pill-editing {
    background-color: #b75338;
}

.pill-business {
    background-color: #2940ba;
}

.blog-featured-top .pill {
    margin-bottom: 24px;
}

.blog-featured-title {
    font-size: 2.4rem;
    margin: 16px 0 24px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.blog-featured-desc {
    color: var(--text-sec);
    line-height: 1.6;
    font-size: 1.15rem;
}

.st41-button:hover {
    background-color: w;
}

.blog-featured-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.blog-author {
    color: var(--text-sec);
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-secondary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-secondary-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
}

.blog-secondary-card:hover .blog-secondary-img {
    transform: scale(1.03);
}

.blog-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.blog-secondary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-secondary-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.blog-secondary-title {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Crop Marks */
.crop-mark {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    z-index: 2;
    pointer-events: none;
}

.top-left {
    top: 16px;
    left: 16px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: 16px;
    right: 16px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: 16px;
    left: 16px;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: 16px;
    right: 16px;
    border-left: none;
    border-top: none;
}

@media (max-width: 900px) {
    .blog-header-module {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .blog-featured-card {
        flex-direction: column;
    }

    .blog-secondary-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured-content {
        padding: 32px;
    }

    .blog-featured-image {
        aspect-ratio: 16/9;
        min-height: auto;
    }
}

@media (max-width: 500px) {
    .blog-header-left h2 {
        font-size: 2.5rem;
    }

    .blog-featured-title {
        font-size: 2rem;
    }
}

/* FAQ */
.faq-section {
    padding: 50px 0;
}

.faq-layout {
    display: grid;
    max-width: 1200px;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: auto;
}

.faq-left .section-pill {
    background: var(--accent);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    display: inline-block;
}

.faq-left h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 1.15rem;
    color: var(--text-sec);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.faq-image-card {
    height: 50%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.faq-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.faq-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-img-overlay .corners {
    position: absolute;
    inset: 24px;
}

.faq-img-overlay .corners span {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: white;
    border-style: solid;
}

.faq-img-overlay .tl {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
}

.faq-img-overlay .tr {
    top: 0;
    right: 0;
    border-width: 2px 2px 0 0;
}

.faq-img-overlay .bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 2px 2px;
}

.faq-img-overlay .br {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
}

.faq-img-overlay .copyright {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #f4f5f6;
    border-radius: 16px;
    padding: 0 24px;
}

.faq-question {
    padding: 24px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e2e4e7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    color: var(--text-sec);
    line-height: 1.6;
}

.faq-answer-inner {
    padding-bottom: 24px;
}

@media (max-width: 900px) {
    .faq-layout {
        padding: 20px;
    }

    .bento-card-turnaround {
        display: none;
    }
    
    .inquiry-visual 
    {
        display: none;
    }
}

/* CTA & Footer */
.cta-section {
    padding: 120px 0 80px 0;
    text-align: center;
    background: #ffffff;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--text-sec);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-btn {
    padding: 16px 36px;
    border-radius: 40px;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 80px;
}

.cta-cards-wrapper {
    position: relative;
    height: 480px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.cta-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    background: #e9e9e9;
}

.cta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-card .corners {
    position: absolute;
    inset: 16px;
    pointer-events: none;
}

.cta-card .corners span {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: rgba(255, 255, 255, 0.9);
    border-style: solid;
}

.cta-card .tl {
    top: 0;
    left: 0;
    border-width: 1.5px 0 0 1.5px;
    border-top-left-radius: 4px;
}

.cta-card .tr {
    top: 0;
    right: 0;
    border-width: 1.5px 1.5px 0 0;
    border-top-right-radius: 4px;
}

.cta-card .bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 1.5px 1.5px;
    border-bottom-left-radius: 4px;
}

.cta-card .br {
    bottom: 0;
    right: 0;
    border-width: 0 1.5px 1.5px 0;
    border-bottom-right-radius: 4px;
}

.cta-card-main {
    width: 340px;
    height: 460px;
    z-index: 3;
    top: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.cta-card-left {
    width: 300px;
    height: 420px;
    z-index: 1;
    top: 30px;
    transform: translateX(-180px) rotate(-6deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cta-card-right {
    width: 300px;
    height: 420px;
    z-index: 1;
    top: 30px;
    transform: translateX(180px) rotate(6deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cta-socials {
    display: flex;
    gap: 32px;
}

.cta-socials a {
    color: var(--text-pri);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cta-socials a:hover {
    color: var(--text-sec);
}

@media (max-width: 768px) {
    .cta-cards-wrapper {
        height: 380px;
    }

    .cta-card-main {
        width: 220px;
        height: 380px;
    }

    .cta-card-left,
    .cta-card-right {
        width: 220px;
        height: 340px;
        /* Hide side cards on small screens */
    }

    h2 {
        font-size: 2.8rem;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-image-card {
        height: 240px;
    }

    .faq-layout {
        gap: 40px;
    }
}

@media (max-width: 420px) {
    .cta-card-main {
        width: 120px;
        height: 240px;
    }

    .cta-card-left,
    .cta-card-right {
        width: 100px;
        height: 200px;
        transform: translateX(80px) rotate(6deg);
        /* Hide side cards on small screens */
    }

    .philosophy-content {
        height: 60vh;
    }

    .img-5 {
        top: 72%;
    }

    .img-4 {
        height: 80vw;
        top: 100%;
    }

    .img-1 {
        width: 90px;
    }

    .cta-card-left {
        transform: translateX(-80px) rotate(-6deg);
    }

    .hero-carousel-group {
        gap: 5px;
    }

    .testimonial-card {
        width: 300px;
        padding: 25px 20px;
    }

    .testimonial-quote {
        font-size: 0.9rem;
    }

    .hero-reg {
        display: none;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .bento-card {
        width: 100%;
        height: auto;
    }

    .bento-card-clients {
        height: 200px !important;
    }

    .bento-card-vision {
        height: 200px !important;
    }

    .cta-card-right {
        transform: translateX(80px) rotate(6deg) !important;
    }

    .cta-card-left {
        transform: translateX(-80px) rotate(-6deg) !important;
    }

    .bento-grid {
        padding: 0 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    border: 1px solid var(--text-pri);
    border-radius: 40px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--text-pri);
    transition: color 0.3s ease;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-pri);
    transition: top 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--bg);
}

.btn-primary:hover::before {
    top: 0;
}

footer {
    padding: 60px 0 40px;
    background: var(--bg);
    border-top: 1px solid var(--accent-border);
}

.footer-top {
    margin: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-sec);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-pri);
}

.footer-socials {
    display: flex;
    gap: 24px;
}

.footer-socials svg {
    width: 24px;
    height: 24px;
    fill: var(--text-sec);
    transition: fill 0.3s ease;
}

.footer-socials a:hover svg {
    fill: var(--text-pri);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--text-sec);
    font-size: 0.8rem;
    padding-top: 24px;
    border-top: 1px solid var(--accent-border);
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

}

/* Contact Page Redesign */
.contact-page {
    display: flex;
    justify-content: center;
    padding: 100px 24px 80px;
    background-color: var(--bg);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.contact-highlight {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 10;
}

.contact-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(17, 17, 17, 0.04);
    border: 1px solid var(--accent-border);
    color: var(--text-pri);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.contact-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #00e676;
    border-radius: 50%;
    display: inline-block;
}

.contact-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-pri);
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-sec);
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #fff;
    border-radius: 24px;
    min-height: 45vw;
    height: auto;
    border: 1px solid var(--accent-border);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.contact-pane {
    padding: 50px;
}

.contact-pane-left {
    background: #fafafa;
    border-right: 1px solid var(--accent-border);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
}

.inquiry-visual {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #ececec;
}

.inquiry-visual img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    display: block;
}

.inquiry-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 8px 12px;
    text-align: center;
}

.inquiry-caption-note {
    margin-top: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    color: #6f6f6f;
    text-align: center;
    display: none;
}

.pane-title {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--text-pri);
}

.pane-desc {
    color: var(--text-sec);
    font-size: 0.95rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-direct-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 12px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.contact-direct-link:hover {
    border-color: #eee;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.cdl-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
}

.cdl-icon svg {
    width: 20px;
    height: 20px;
}

.cdl-text {
    display: flex;
    flex-direction: column;
}

.cdl-label {
    font-size: 0.75rem;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.cdl-value {
    font-size: 1rem;
    color: var(--text-pri);
    font-weight: 500;
}

.pane-socials {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    transform: translateY(-3px);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.contact-pane-right {
    background: #fff;
    display: flex;
    flex-direction: column;
}

.form-expand-btn {
    align-self: flex-start;
    border: 1px solid var(--accent-border);
    background: #ffffff;
    color: var(--text-pri);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-expand-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
}

.google-form-embed {
    margin-top: 14px;
    border-radius: 12px;
    overflow: hidden;
    height: min(70vh, 820px);
    margin-left: 0;
    background: #ffffff;
    transition: height 0.3s ease;
}

.contact-grid.is-form-expanded {
    grid-template-columns: 1fr;
    min-height: 0;
}

.contact-grid.is-form-expanded .contact-pane-left {
    display: none;
}

.contact-grid.is-form-expanded .contact-pane-right {
    padding: 28px;
}

.contact-grid.is-form-expanded .google-form-embed,
.google-form-embed.is-expanded {
    height: min(90vh, 1200px);
}

.direct-connect-section {
    margin-top: 30px;
    background: #ffffff;
    border: 1px solid var(--accent-border);
    border-radius: 24px;
    box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.direct-connect-section .pane-title {
    margin-bottom: 10px;
}

.direct-connect-section .pane-desc {
    margin-bottom: 28px;
    max-width: 700px;
}

.direct-connect-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.direct-connect-card {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.direct-connect-card h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.direct-connect-card a {
    font-size: 0.96rem;
    color: #222222;
    line-height: 1.5;
}

.direct-connect-card a:hover {
    text-decoration: underline;
}

.contact-meta-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fafafa;
    border: 1px solid var(--accent-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: #f4f4f4;
}

.meta-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.meta-icon svg {
    width: 20px;
    height: 20px;
}

.meta-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.meta-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-pri);
}

.meta-text span {
    font-size: 0.9rem;
    color: var(--text-sec);
    line-height: 1.5;
}

.premium-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.premium-submit-btn:hover {
    background: #222;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.premium-submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.premium-submit-btn:hover svg {
    transform: translateX(4px);
}

.form-disclaimer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 16px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .contact-pane-left {
        border-right: none;
        border-bottom: 1px solid var(--accent-border);
    }

    .inquiry-visual img {
        min-height: 420px;
    }

    .direct-connect-grid {
        grid-template-columns: 1fr;
    }

    .google-form-embed {
        height: min(75vh, 900px);
    }

    .contact-grid.is-form-expanded .contact-pane-right {
        padding: 24px;
    }

    .contact-grid.is-form-expanded .google-form-embed,
    .google-form-embed.is-expanded {
        height: min(88vh, 1000px);
    }
}

.portfolio-services-cta {
    margin-top: -50px;
    margin-bottom: 46px;
    display: flex;
    justify-content: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #111111;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.btn-outline:hover {
    background: #111111;
    color: #ffffff;
}

.services-page-note {
    max-width: 900px;
    margin: 0 auto 56px;
    text-align: center;
}

.services-page-note p {
    color: var(--text-sec);
    line-height: 1.6;
}

.services-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 70px;
}

.services-info-card {
    border: 1px solid var(--accent-border);
    border-radius: 18px;
    padding: 22px;
    background: #ffffff;
}

.services-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.services-info-card p {
    color: var(--text-sec);
    line-height: 1.55;
    font-size: 0.95rem;
}

.services-process {
    margin-bottom: 80px;
}

.services-process h2,
.services-faq h2 {
    text-align: center;
    margin-bottom: 28px;
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.services-process-step {
    border: 1px solid var(--accent-border);
    border-radius: 14px;
    padding: 16px;
    background: #ffffff;
}

.services-process-step span {
    font-family: 'Instrument Serif', serif;
    font-size: 1.6rem;
    color: var(--text-sec);
}

.services-process-step h4 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 1rem;
}

.services-process-step p {
    color: var(--text-sec);
    font-size: 0.9rem;
    line-height: 1.45;
}

.services-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.services-faq-item {
    border: 1px solid var(--accent-border);
    border-radius: 14px;
    background: #ffffff;
    padding: 16px;
}

.services-faq-item h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.services-faq-item p {
    color: var(--text-sec);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Old classes removed to make room for redesigned components... */

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }

    .google-form-wrap {
        max-width: 100%;
    }

    .philosophy-section {
        min-height: 180vh;
    }

    .service-desc-vt {
        font-size: 0.9rem;
    }

    .cta-card-left,
    .cta-card-right {
        width: 120px;
        height: 200px;
        transform: translateX(100px) rotate(6deg);
    }

    .cta-card-left {
        transform: translateX(-100px) rotate(-6deg);
    }

    .cta-card-main {
        width: 160px;
        height: 240px;
    }

    .contact-page {
        padding: 120px 16px 60px;
    }

    .contact-pane {
        padding: 30px 24px;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .inquiry-visual img {
        min-height: 320px;
    }

    .direct-connect-section {
        padding: 28px 22px;
        border-radius: 18px;
    }
}

@media (max-width: 980px) {
    .services-info-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 680px) {

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




/* Page Slide In Animation */
@keyframes pageSlideUp {
    0% {
        transform: translateY(100%);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.page-slide-up {
    animation: pageSlideUp 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Hero Polaroids and Camera */
.hero-polaroid {
    position: absolute;
    width: 60px;
    height: auto;
    border: 4px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: transform 0.3s ease;
}

.left-polaroid {
    top: -20px;
    left: -40px;
    transform: rotate(-15deg);
}

.left-polaroid:hover {
    transform: rotate(-5deg) scale(1.1);
}

.right-polaroid {
    bottom: -10px;
    right: -40px;
    transform: rotate(15deg);
}

.right-polaroid:hover {
    transform: rotate(5deg) scale(1.1);
}

.hero-camera {
    position: absolute;
    width: 100px;
    height: auto;
    top: -60px;
    right: 30%;
    transform: rotate(10deg);
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-polaroid {
        width: 30px;
    }

    .bottom-polaroid {
        display: none;
    }

    .left-polaroid {
        left: -20px;
    }

    .right-polaroid {
        right: -20px;
    }

    .hero-camera {
        width: 50px;
        right: 10%;
        top: -30px;
    }
}

.top-polaroid {
    top: -50px;
    left: 40%;
    transform: rotate(-12deg);
}

.top-polaroid:hover {
    transform: rotate(2deg) scale(1.1);
}

.bottom-polaroid {
    bottom: -30px;
    left: 20%;
    transform: rotate(-10deg);
}

.bottom-polaroid:hover {
    transform: rotate(-4deg) scale(1.1);
}

@media (max-width: 768px) {
    .top-polaroid {
        top: -40px;
        left: 30%;
    }

    .bottom-polaroid {
        bottom: -20px;
        left: 10%;
    }
}

/* Studio 41 Styles */
.studio-page {
    --bg: #0a0a0d;
    --text-pri: #f5f2eb;
    --text-sec: #a09f9d;
    --accent: rgba(255, 255, 255, 0.04);
    --accent-border: rgba(255, 255, 255, 0.08);
    --card-bg: #121216;
    --primary-color: #d1b482;
}

.studio-page .top-header {
    background-color: transparent !important;
    border-bottom: 1px solid var(--accent-border);
}

.studio-page .header-btn {
    background: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    border-radius: 40px !important;
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
}

.studio-page .header-btn:hover {
    background: var(--primary-color) !important;
    color: var(--bg) !important;
}

.studio-topbar {
    background: #000;
    color: #fff;
    padding: 8px 0;
    font-size: 0.8rem;
}

.studio-topbar .container {
    display: flex;
    justify-content: space-between;
}

.studio-topbar a {
    color: var(--primary-color);
}

.studio-header {
    position: relative;
}

.studio-logo {
    display: flex;
    flex-direction: column;
}

.studio-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.studio-logo .sub-logo {
    font-size: 0.7rem;
    color: var(--text-sec);
}

.studio-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(5rem, 8vw, 8rem);
    line-height: 0.9;
    color: rgb(30, 30, 30);
    margin-bottom: 24px;
    font-weight: 700;
    margin-top: 20px;
    text-align: left;
    letter-spacing: -0.04em;
}

.studio-title i {
    color: var(--primary-color);
}

.studio-btn {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    transition: all 0.3s ease;
    padding: 10px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.studio-btn:hover {
    font-style: underline;
}

.studio-btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.studio-btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.studio-hero {
    min-height: auto;
    padding-top: 60px;
}

.studio-badge {
    display: inline-block;
    background: rgba(196, 196, 196, 0.15);
    border: 1px solid rgba(132, 132, 132, 0.5);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.6rem;
    margin-top: 90px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left !important;

}

.studio-hero-btns {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.studio-hero-visual {
    width: 100%;
}

.studio-hero-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
}

.studio-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 0 94px;
}

.founder-quote {
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    margin-top: 30px;
    font-style: italic;
    color: var(--primary-color);
}

.founder-quote cite {
    display: block;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-sec);
    margin-top: 10px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: transparent;
    padding: 30px 24px;
    border-radius: 0;
    text-align: center;
    border: none;
    border-top: 1px solid var(--accent-border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: none;
    border-color: var(--primary-color);
}

.stat-card h3 {
    font-size: 3.5rem;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.about-images {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    grid-column: 1 / -1;
    height: 340px;
}

.about-images img {
    width: 50%;
    border-radius: 12px;
    object-fit: cover;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.studio-service-card {
    background: transparent;
    padding: 40px 30px;
    border-radius: 0;
    border: none;
    border-left: 1px solid var(--accent-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.studio-service-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    background: transparent;
}

.studio-service-card .icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.studio-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.studio-service-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.studio-service-card .tags span {
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-sec);
}

.sub-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    padding: 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--accent-border);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: var(--accent);
    border-color: var(--primary-color);
    transform: none;
}

.amenity-item .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--accent-border);
    color: var(--text-pri);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: transparent;
}

.studio-footer {
    border-top: 1px solid var(--accent-border);
    padding: 60px 0 20px;
    background: var(--bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.footer-desc {
    color: var(--text-sec);
}

.footer-link {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--accent-border);
    text-align: center;
    color: var(--text-sec);
    font-size: 0.85rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.whatsapp-float svg {
    margin-left: 2px;
}

@media (max-width: 768px) {

    .studio-about-grid,
    .booking-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Main Site - Studio 41 Integration Styles */
.sister-brand-section {
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 75%;
}

/* Header */
.sb-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.sb-header-left {
    max-width: 600px;
}

.sb-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    background: var(--accent);
    color: var(--text-pri);
}

.sb-pill-dark {
    background: #111;
    color: #fff;
    margin-bottom: 0;
}

.sb-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    line-height: 1.05;
}

.sb-header p {
    color: var(--text-sec);
    font-size: 1.15rem;
    line-height: 1.5;
}

.sb-header-right {
    margin-bottom: 10px;
}

/* Featured Card */
.sb-featured {
    display: flex;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 24px;
    gap: 60px;
    align-items: stretch;
}

.sb-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.sb-featured .sb-image-wrapper {
    flex: 1;
}

.sb-image-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sb-featured:hover .sb-image-wrapper img,
.sb-card:hover .sb-image-wrapper img {
    transform: scale(1.03);
}

.sb-focus-bracket {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2.5px solid rgba(255, 255, 255, 0.9);
    z-index: 2;
    border-radius: 1px;
}

.sb-focus-bracket.tl {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.sb-focus-bracket.tr {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.sb-focus-bracket.bl {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.sb-focus-bracket.br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.sb-featured-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 40px 20px 0;
}

.sb-featured-info h3 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1.1;
    margin: 24px 0 16px;
    letter-spacing: -0.03em;
}

.sb-featured-info p {
    color: var(--text-sec);
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: auto;
    max-width: 480px;
}

.sb-author-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    color: var(--text-sec);
    font-size: 0.95rem;
    font-weight: 500;
}

.sb-author-row .sb-pill {
    padding: 4px 16px;
}

/* Grid Cards */
.sb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: -10px;
}

.sb-card .sb-image-wrapper {
    aspect-ratio: 4/2.8;
    margin-bottom: 20px;
}

.sb-card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.sb-card-info h4 {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
    color: var(--text-pri);
}

.sb-card-info .sb-pill {
    margin-bottom: 0;
    font-size: 0.75rem;
    padding: 4px 12px;
    white-space: nowrap;
}

.pill-green {
    background: #3b5341;
    color: #fff;
    border: 1px solid #3b5341;
}

.pill-orange {
    background: #a64c24;
    color: #fff;
    border: 1px solid #a64c24;
}

.pill-blue {
    background: #1636a1;
    color: #fff;
    border: 1px solid #1636a1;
}

@media (max-width: 992px) {
    .sb-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .sb-featured {
        flex-direction: column;
        padding: 16px;
        gap: 30px;
    }

    .sb-featured .sb-image-wrapper {
        min-height: 300px;
    }

    .sb-featured-info {
        padding: 0 10px 10px 10px;
    }

    .sb-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


.studio-amenities {
    max-width: 1100px;
    margin: auto;
}

/* Studio 41 Services Bento */
.studio41-bento-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.studio41-bento-col-left,
.studio41-bento-col-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.studio41-bento-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    flex: 1;
}

.studio41-bento-card {
    background: #f6f6f7;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #1a1a1a;
}

.studio41-bento-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.studio41-bento-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.studio41-bento-card-icon {
    margin-bottom: auto;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

/* Card Specifics to match index.html heights */
.s-card-rental {
    height: 440px;
    justify-content: flex-end;
}

.s-card-photo {
    height: 274px;
    justify-content: flex-end;
}

.studio41-bento-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    height: 350px;
}

.s-card-set,
.s-card-talent {
    height: 100%;
    justify-content: flex-start;
}

.studio41-bento-row-mid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    height: 180px;
}

.s-card-tech {
    height: 100%;
    justify-content: flex-end;
}

.studio41-bento-row-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    height: 160px;
}

.s-card-video {
    height: 100%;
    justify-content: flex-end;
}

/* Tags styling */
.s-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

.s-card-tags span {
    background: #ebebeb;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #333;
    white-space: nowrap;
}

/* Card Visuals (abstract) */
.s-bg-text {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 12rem;
    font-weight: 500;
    color: #ebebeb;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.s-bg-text-top {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 12rem;
    font-weight: 500;
    color: #ebebeb;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.sub-link-dark {
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .studio41-bento-grid {
        grid-template-columns: 1fr;
    }

    .studio41-bento-row-top,
    .studio41-bento-row-mid,
    .studio41-bento-row-bottom {
        grid-template-columns: 1fr;
        height: auto;
    }

    .s-card-rental,
    .s-card-photo,
    .s-card-set,
    .s-card-talent,
    .s-card-tech,
    .s-card-video {
        height: auto;
        min-height: 250px;
    }
}

/* New About Section for Studio 41 */
.new-about-section {
    padding: 100px 0;
    background: var(--bg);
}

.new-about-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--text-pri);
    margin-bottom: 12px;
    letter-spacing: -0.04em;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.new-about-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 60px;
}

.new-about-location {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-pri);
    flex: 0 0 200px;
    margin-left: 10px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.new-about-images {
    flex: 1;
    position: relative;
    width: 100%;
    min-height: 550px;
}

.new-img-left {
    position: absolute;
    left: 0;
    top: 14%;
    width: 40%;
    aspect-ratio: 3.5/5;
    object-fit: cover;
    z-index: 1;
}

.new-img-center {
    position: absolute;
    left: 28%;
    top: 6%;
    width: 40%;
    aspect-ratio: 3.5/5;
    object-fit: cover;
    z-index: 2;
}

.new-img-right {
    position: absolute;
    left: 60%;
    top: 0;
    width: 40%;
    aspect-ratio: 3.5/5;
    object-fit: cover;
    z-index: 3;
}

.new-about-footer {
    text-align: center;
    max-width: 800px;
    margin: 0px auto 0;
}

.new-about-number {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--text-pri);
}

.new-about-desc {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.4;
    font-weight: 500;
    color: var(--text-pri);
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .new-about-content {
        flex-direction: column;
    }

    .new-about-location {
        flex: none;
        margin-bottom: 30px;
    }

    .new-about-images {
        min-height: 400px;
        margin: 0 auto;
    }

    .new-img-left,
    .new-img-center,
    .new-img-right {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        margin-bottom: 20px;
    }
}


.new-about-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--accent-border);
}

.new-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-pri);
    font-family: 'Inter', sans-serif;
}

.new-stat-item svg {
    color: var(--text-pri);
}

@media (max-width: 768px) {
    .new-about-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}


/* Service Accordion Styling */
.services-list-container {
    display: flex;
    gap: 60px;
    margin-top: 80px;
}

.services-image-col {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
}

.services-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: opacity 0.4s ease;
}

.services-accordion-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accordion-item {
    border-bottom: 2px solid var(--accent-border);
    cursor: pointer;
    overflow: hidden;
    padding: 32px 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-pri);
    transition: color 0.3s;
    letter-spacing: -0.04em;
}

.accordion-item:hover .accordion-header h3 {
    color: var(--text-sec);
}

.accordion-item.active .accordion-header h3 {
    color: var(--text-pri);
}

.accordion-body {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.accordion-item.active .accordion-body {
    max-height: 300px;
    opacity: 1;
    margin-top: 24px;
}

.accordion-body p {
    font-size: 1.1rem;
    color: var(--text-sec);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 90%;
}

.icon-minus {
    display: none;
}

.accordion-item.active .icon-plus {
    display: none;
}

.accordion-item.active .icon-minus {
    display: block;
}

@media (max-width: 768px) {
    .services-list-container {
        flex-direction: column;
    }

    .accordion-header h3 {
        font-size: 2.2rem;
    }

    .services-image-col img {
        aspect-ratio: 1/1;
    }
}

/* Studio 41 New Hero Section */
.s41-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding-bottom: 40px;
}

.s41-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.s41-hero-bg video,
.s41-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s41-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.s41-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.s41-hero-left {
    flex: 1;
}

.s41-main-title {
    font-size: clamp(7rem, 12vw, 10rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.04em;
    display: inline-flex;
    align-items: flex-start;
}

.s41-reg-mark {
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 500;
    margin-left: 0.2em;
    margin-top: 0.1em;
}

.s41-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 320px;
    margin-bottom: 10px;
}

.s41-hero-desc {
    color: #dddddd;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.s41-book-btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.s41-book-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.artist-image {
    height: 100%;
    max-height: 360px;
    position: relative;
}

.artist-image img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: contain;
}

.artist-image-tag {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(0, 0, 0, 0.65);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.82rem;
    padding: 8px 14px;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .s41-hero-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0px 30px;

        gap: 30px;
    }

    .s41-hero-right {
        max-width: 100%;
        margin-bottom: 0;
    }

    .s41-main-title {
        font-size: clamp(4rem, 8vw, 6rem);
    }

    .s41-book-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .sister-brand-section {
        max-width: 100%;
    }
}

/* ============================================================
   STUDIO 41 — NEW SECTIONS (added 2026)
   ============================================================ */

/* --- H1 SEO Keywords Sub-line --- */
.s41-hero-seo {
    display: block;
    font-size: clamp(0.6rem, 1.2vw, 0.85rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
    margin-top: 10px;
    line-height: 1.5;
    text-transform: none;
}

/* --- Shot at 41 Studio — Brands Section --- */
.s41-brands-section {
    padding: 80px 0;
    background: #fafafa;
    border-top: 1px solid var(--accent-border);
    border-bottom: 1px solid var(--accent-border);
}

.s41-brands-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.s41-brands-section .section-header h2 {
    margin-bottom: 12px;
}

.s41-brands-section .section-desc {
    color: var(--text-sec);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.s41-brands-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto 32px;
}

.s41-brand-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 200px;
}

.s41-brand-logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--accent-border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    color: var(--text-sec);
    font-size: 0.85rem;
    font-weight: 500;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.01em;
    height: 100%;
    box-sizing: border-box;
}

.s41-brand-logo-box:hover {
    border-color: #aaa;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.s41-brand-logo-box svg {
    opacity: 0.4;
}

.s41-brands-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-sec);
    opacity: 0.6;
    margin-top: 8px;
    font-style: italic;
}

@media (max-width: 768px) {
    .s41-brand-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .s41-brand-item {
        flex: 0 0 100%;
    }
}

/* --- Equipment & Specs Section --- */
.s41-equipment-section {
    padding: 100px 0;
    background: #fff;
}

.s41-equipment-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.s41-equipment-section .section-header h2 {
    margin-bottom: 12px;
}

.s41-equipment-section .section-desc {
    color: var(--text-sec);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.s41-specs-grid {
    display: none;
    /* replaced by bento below */
}

/* --- Equipment & Specs Bento Grid --- */
.s41-equip-bento {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    max-width: 1100px;
    margin: 56px auto 0;
}

.s41-equip-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Base card */
.s41-eq-card {
    background: #f6f6f7;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Card header row — icon pill + tag */
.s41-eq-top {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.s41-eq-icon-wrap {
    width: 32px;
    height: 32px;
    background: #e4e4e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #333;
}

.s41-eq-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-sec);
}

.s41-eq-title {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text-pri);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Background watermark */
.s41-eq-watermark {
    position: absolute;
    bottom: -16px;
    right: -8px;
    font-size: 7rem;
    font-weight: 700;
    color: #e8e8ea;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    letter-spacing: -0.05em;
}

/* Spec list */
.s41-eq-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: relative;
    z-index: 2;
}

.s41-eq-list li {
    font-size: 0.875rem;
    color: #444;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.s41-eq-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #aaa;
    font-size: 0.75rem;
}

.s41-eq-list-sm li {
    font-size: 0.82rem;
}

/* ── Lighting card (tall left, fills flex) ── */
.s41-eq-lighting {
    flex: 1;
}

/* ── Power card (shorter, sits below lighting) ── */
.s41-eq-power {
    min-height: 200px;
}

/* ── Floor Plan card (tall, dominates right col) ── */
.s41-eq-floor {
    flex: 1;
    min-height: 320px;
}

/* Floor plan diagram */
.s41-eq-floorplan {
    display: flex;
    gap: 8px;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid #e0e0e2;
    background: #fff;
    position: relative;
    z-index: 2;
    min-height: 160px;
}

.s41-fp-shooting {
    flex: 2.2;
    background: #ececee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    position: relative;
    border-right: 1.5px solid #e0e0e2;
    gap: 6px;
}

.s41-fp-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #333;
    z-index: 2;
    position: relative;
}

.s41-fp-dim {
    font-size: 0.68rem;
    color: #888;
    z-index: 2;
    position: relative;
}

/* Small cyc arc hint inside the floor plan */
.s41-fp-cyc-arc {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    border: 2px solid #c8c8cc;
    border-bottom: none;
    border-radius: 80px 80px 0 0;
    background: #f4f4f6;
}

.s41-fp-support {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.s41-fp-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #555;
    text-align: center;
    padding: 8px 4px;
    border-bottom: 1.5px solid #e0e0e2;
}

.s41-fp-box:last-child {
    border-bottom: none;
}

.s41-fp-box svg {
    color: #aaa;
}

/* Floor plan stats row */
.s41-eq-floor-stats {
    display: flex;
    gap: 0;
    border-top: 1.5px solid #e0e0e2;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.s41-floor-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    text-align: center;
    border-right: 1.5px solid #e0e0e2;
    gap: 3px;
}

.s41-floor-stat:last-child {
    border-right: none;
}

.s41-floor-stat span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-pri);
    letter-spacing: -0.04em;
    line-height: 1;
}

.s41-floor-stat {
    font-size: 0.68rem;
    color: var(--text-sec);
    font-weight: 400;
}

/* ── Bottom row — Cyc + Inventory ── */
.s41-equip-row-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-height: 240px;
}

/* Cyclorama card */
.s41-eq-cyc {
    justify-content: space-between;
}

.s41-cyc-arc-visual {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 12px;
    min-height: 90px;
    z-index: 2;
}

.s41-cyc-arc {
    width: 80%;
    height: 60px;
    border: 3px solid #c8c8cc;
    border-bottom: none;
    border-radius: 200px 200px 0 0;
    background: #fff;
    position: absolute;
    bottom: 0;
}

.s41-cyc-label {
    font-size: 0.7rem;
    color: var(--text-sec);
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 2;
    letter-spacing: 0.01em;
    padding-bottom: 4px;
}

/* Inventory card — tag cloud */
.s41-eq-inv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.s41-eq-inv-tags span {
    background: #ebebed;
    border-radius: 20px;
    padding: 5px 11px;
    font-size: 0.72rem;
    color: #444;
    font-weight: 500;
    white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .s41-equip-bento {
        grid-template-columns: 1fr;
    }

    .s41-equip-col-left {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .s41-eq-lighting,
    .s41-eq-power {
        flex: none;
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .s41-equip-col-left {
        grid-template-columns: 1fr;
    }

    .s41-equip-row-bottom {
        grid-template-columns: 1fr;
    }

    .s41-eq-card {
        padding: 22px 18px;
    }
}

/* --- Location / Google Map Section --- */
.s41-location-section {
    padding: 100px 0;
    background: #fafafa;
    border-top: 1px solid var(--accent-border);
}

.s41-location-header {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.s41-location-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.s41-location-info h2 {
    margin: 0;
}

.s41-location-desc {
    font-size: 1rem;
    color: var(--text-sec);
    line-height: 1.6;
    max-width: 360px;
}

.s41-travel-chips {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.s41-travel-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-pri);
    font-weight: 500;
    background: #fff;
    border: 1px solid var(--accent-border);
    border-radius: 40px;
    padding: 8px 16px;
    width: fit-content;
}

.s41-travel-chip svg {
    flex-shrink: 0;
    color: var(--text-sec);
}

.s41-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--accent-border);
}

.s41-map-wrapper iframe {
    display: block;
}

@media (max-width: 900px) {
    .s41-location-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .s41-location-desc {
        max-width: 100%;
    }

    .s41-travel-chips {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* --- Booking Section & Studio Rules --- */
.s41-booking-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid var(--accent-border);
}

.s41-booking-wrapper {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

/* Booking Form */
.s41-booking-form-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f6f6f7;
    border-radius: 20px;
    padding: 32px;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
}

.s41-booking-form-col h2 {
    margin: 4px 0 8px;
}

.s41-booking-desc {
    font-size: 1rem;
    color: var(--text-sec);
    line-height: 1.6;
    margin-bottom: 110px;
}

.s41-booking-phones {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.s41-phone-link {
    width: 100%;
    max-width: 360px;
    padding: 14px 18px;
    border: 1px solid var(--accent-border);
    border-radius: 10px;
    background: #f6f6f7;
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--text-pri);
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.large-phone-link {
    max-width: 100%;
    padding: 24px;
    background: #fff;
    border-color: transparent;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.phone-link-icon {
    width: 48px;
    height: 48px;
    background: #f0f0f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-link-icon svg {
    color: #111;
    width: 22px;
    height: 22px;
}

.phone-link-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-link-text span {
    font-size: 0.8rem;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.phone-link-text strong {
    font-size: 1.25rem;
    color: var(--text-pri);
    font-weight: 500;
}

.s41-phone-link:hover {
    border-color: var(--accent-border);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.s41-phone-link:focus-visible {
    outline: 2px solid #888;
    outline-offset: 2px;
}

.s41-booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s41-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.s41-form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--accent-border);
    border-radius: 10px;
    background: #f6f6f7;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-pri);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.s41-form-input::placeholder {
    color: #999;
}

.s41-form-input:focus {
    border-color: #888;
    background: #fff;
}

.s41-form-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.s41-form-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: #111;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 4px;
    letter-spacing: -0.01em;
}

.s41-form-submit:hover {
    background: #333;
}

/* Studio Rules Card */
.s41-rules-col {
    position: sticky;
    top: 120px;
}

.s41-rules-card {
    background: #f6f6f7;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.s41-rules-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.s41-rules-header svg {
    flex-shrink: 0;
    color: var(--text-pri);
}

.s41-rules-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-pri);
    margin: 0;
    letter-spacing: -0.02em;
}

.s41-rules-intro {
    font-size: 0.85rem;
    color: var(--text-sec);
    margin-bottom: 20px;
    line-height: 1.5;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent-border);
}

.s41-rule-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--accent-border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.s41-rule-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-pri);
    letter-spacing: -0.01em;
}

.s41-rule-title svg {
    flex-shrink: 0;
    color: var(--text-sec);
}

.s41-rule-item p {
    font-size: 0.82rem;
    color: var(--text-sec);
    line-height: 1.6;
    margin: 0;
}

.s41-rule-item p strong {
    color: var(--text-pri);
    font-weight: 600;
}

@media (max-width: 900px) {
    .s41-booking-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .s41-rules-col {
        position: static;
    }

    .s41-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .s41-rules-card,
    .s41-booking-form-col {
        padding: 24px 20px;
    }

    .s41-booking-form-col {
        gap: 6px;
    }
}

/* ============================================================
   Additional .section-header utility (text-center)
   ============================================================ */
.section-header.text-center {
    text-align: center;
}

.section-header.text-center .section-label {
    display: block;
    margin-bottom: 12px;
}



/* ============================================================
   Core Services Section
   ============================================================ */
.core-services-section {
    padding: 00px 0;
}

.core-services-header {
    text-align: center;
    margin-bottom: 40px;
}

.core-services-header h2 {
    color: var(--text-pri);
    margin-bottom: 8px;
    font-size: 2rem;
}

.core-services-header p {
    color: var(--text-sec);
    font-size: 1.1rem;
}

.core-services-carousel {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}

.core-services-carousel .swiper-wrapper {
    align-items: center;
    /* Center them so scale looks good from the middle */
}

.core-services-carousel .swiper-slide {
    width: 280px;
    /* Base width of the cards */
    height: auto;
}

.core-services-carousel .service-card-vertical {
    width: 100%;
    height: 100%;
    margin: 0;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.4;
    transform: scale(0.85);
    /* Unfocused size */
}

/* Enlarge the active slide and bring it to focus */
.core-services-carousel .swiper-slide-active .service-card-vertical {
    opacity: 1;
    transform: scale(1.15);
    /* Focused size */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.162);
    z-index: 10;
}

@media (min-width: 768px) {
    .core-services-carousel .swiper-slide {
        width: 320px;
    }
}

.swiper {
    height: 700px;
}

/* ============================================================
   Artist Section
   ============================================================ */
.artist-section {
    padding: 22px;
    background: var(--card-bg);
    margin: 40px auto;
    border-radius: 24px;
    border: 1px solid var(--accent-border);
    max-width: 1200px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.artist-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
    gap: 34px;
    align-items: center;
}

strong {
    font-weight: 600;
}

.artist-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 10px 6px;
}

.artist-content .section-pill {
    align-self: flex-start;
    margin-bottom: 4px;
}

.artist-section h2 {
    color: var(--text-pri);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.artist-section p {
    color: var(--text-sec);
    line-height: 1.75;
    max-width: 62ch;
    margin: 0;
}

.artist-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 6px;
}

.artist-meta-item {
    background: var(--bg);
    border: 1px solid var(--accent-border);
    border-radius: 14px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.artist-meta-value {
    color: var(--text-pri);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1;
}

.artist-meta-label {
    color: var(--text-sec);
    font-size: 0.82rem;
}

.artist-content .btn-dark {
    align-self: flex-start;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .artist-section {
        padding: 16px;
        border-radius: 18px;
        margin: 25px;
    }

    .artist-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .artist-image {
        min-height: 300px;
    }

    .artist-content {
        padding: 2px;
        gap: 16px;
    }

    .artist-meta {
        grid-template-columns: 1fr;
    }

    .artist-content .btn-dark {
        width: 100%;
        text-align: center;
    }
    .contact-grid
    {
        height: 700px;
    }
    .contact-pane-left
    {
        display: none;
    }
}

/* ============================================================
   Minimal Global Footer
   ============================================================ */
.global-footer {
    background: var(--bg);
    padding: 60px 0 20px;
    border-top: 1px solid var(--accent-border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand h2 {
    color: var(--text-pri);
    margin: 0 0 10px 0;
    font-size: 1.4rem;
}

.footer-brand p {
    color: var(--text-sec);
    margin: 0;
    font-size: 0.9rem;
}

.footer-social-links {
    display: flex;
    gap: 16px;
}

.footer-social-links a {
    color: var(--text-sec);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-social-links a:hover {
    color: var(--text-pri);
}

.footer-bottom {
    margin: 40px auto 0;
    padding: 20px 20px 20px;
    text-align: center;
    border-top: 1px solid var(--accent-border);

    color: var(--text-sec);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }
    .contact-pane
    {
        padding: 30px;
    }
}


.core-services-section .service-img-vt {
    aspect-ratio: 3 / 4;
}

.teQAzf
{
    max-width: 0;
}