/* =====================================================
   RESET & BRAND TOKENS
===================================================== */

:root {
    --brand-magenta: #c706ff;
    --brand-indigo: #4600a5;
    --brand-gradient: linear-gradient(135deg, #c706ff 0%, #4600a5 100%);
    --brand-gradient-h: linear-gradient(90deg, #c706ff 0%, #4600a5 100%);
    --brand-glow: rgba(199, 6, 255, 0.35);
    --brand-glow-subtle: rgba(199, 6, 255, 0.15);
}

::selection {
    background: rgba(199, 6, 255, 0.22);
    color: #111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f4f3f0;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}



/* =====================================================
   LOADER
===================================================== */

.loader {
    position: fixed;
    inset: 0;
    background: #111;
    color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 10px;
    letter-spacing: 3px;
    animation: loaderOut 1.2s ease 1.2s forwards;
}

.loader::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-gradient-h);
}

@keyframes loaderOut {

    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

}



/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    color: white;
    transition: .4s ease;
}

.site-header.scrolled {
    position: fixed;
    background: rgba(244,243,240,.94);
    color: #111;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(199, 6, 255, 0.08);
}

.brand {
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 1;
    transition: opacity .3s;
}

.brand span {
    display: block;
    font-size: 7px;
    letter-spacing: 3px;
    margin-top: 7px;
    transition: color .3s;
}

.brand:hover span {
    background: var(--brand-gradient-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1.5px;
    background: var(--brand-gradient-h);
    transition: width .4s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* SPACE STUDIO BRAND NAVBAR BUTTON */
.desktop-nav .nav-space-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: var(--brand-gradient);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 15px var(--brand-glow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.desktop-nav .nav-space-btn::after {
    display: none !important;
}

.desktop-nav .nav-space-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--brand-glow);
    opacity: 0.95;
}

/* MOBILE MENU SPACE STUDIO BUTTON */
.mobile-menu-inner > a.nav-space-btn {
    background: var(--brand-gradient);
    color: #fff !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 35px;
    text-align: center;
    margin: 16px 0;
    display: inline-block;
    align-self: flex-start;
    box-shadow: 0 6px 25px var(--brand-glow);
}

.menu-button {
    display: none;
    background: none;
    border: 0;
    width: 35px;
    cursor: pointer;
}

.menu-button span {
    display: block;
    height: 1px;
    background: currentColor;
    margin: 7px 0;
}



/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #111;
    color: white;
    z-index: 90;
    transform: translateY(-100%);
    transition: transform .6s cubic-bezier(.77,0,.18,1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu-inner {
    height: 100%;
    padding: 120px 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-menu-inner > a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 55px;
    margin: 10px 0;
}

.mobile-social {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mobile-social a {
    transition: color .3s ease;
}

.mobile-social a:hover {
    background: var(--brand-gradient-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #111;
    color: white;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 10s ease forwards;
}

@keyframes heroZoom {

    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1);
    }

}

.hero-shade {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.3);
}

.hero-top,
.hero-bottom {
    position: absolute;
    left: 4vw;
    right: 4vw;
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    letter-spacing: 2px;
}

.hero-top {
    top: 110px;
}

.hero-bottom {
    bottom: 35px;
}

.hero-bottom a {
    border-bottom: 1px solid white;
    padding-bottom: 5px;
}

.hero-title {
    position: absolute;
    left: 8vw;
    bottom: 14vh;
}

.hero-title h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(70px, 11vw, 170px);
    font-weight: 400;
    line-height: .82;
    letter-spacing: -7px;
}



/* =====================================================
   GENERAL
===================================================== */

.section-label,
.statement-meta,
.portfolio-heading > div {
    display: flex;
    gap: 15px;
    font-size: 9px;
    letter-spacing: 2px;
}

.section-label span:first-child,
.statement-meta span:first-child,
.portfolio-heading > div span:first-child {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.statement {
    padding: 160px 8vw 190px;
}

.statement-content {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 10vw;
    margin-top: 90px;
}

.statement-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(65px, 9vw, 140px);
    font-weight: 400;
    line-height: .8;
    letter-spacing: -6px;
}

.statement-description {
    padding-top: 15px;
}

.statement-description p {
    max-width: 440px;
    font-size: 18px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 30px;
}



/* =====================================================
   SERVICES
===================================================== */

.services {
    padding: 100px 8vw 180px;
}

.services-heading {
    margin: 60px 0 100px;
}

.services-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(70px, 10vw, 150px);
    font-weight: 400;
    line-height: .8;
    letter-spacing: -6px;
}

.services-list {
    border-top: 1px solid #bbb;
}

.service-row {
    display: grid;
    grid-template-columns: 8% 42% 38% 12%;
    align-items: center;
    padding: 45px 0;
    border-bottom: 1px solid #bbb;
    transition: padding .5s ease;
}

.service-row:hover {
    padding-left: 20px;
    padding-right: 20px;
}

.service-number {
    font-size: 9px;
    letter-spacing: 2px;
    color: #777;
    transition: color .3s ease;
}

.service-row:hover .service-number {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-title h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 55px);
    font-weight: 400;
}

.service-description p {
    max-width: 380px;
    font-size: 17px;
    line-height: 1.65;
    color: #666;
}

.service-arrow {
    text-align: right;
    font-size: 25px;
    transition: transform .4s ease, color .3s ease;
}

.service-row:hover .service-arrow {
    transform: translate(8px, -8px);
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* =====================================================
   PORTFOLIO
===================================================== */

.portfolio {
    padding: 100px 5vw 180px;
    background: #111;
    color: white;
}

.portfolio-heading {
    max-width: 1420px;
    margin: 0 auto 70px;
    padding: 0;
}

.portfolio-heading > div {
    display: flex;
    gap: 15px;
    font-size: 9px;
    letter-spacing: 2px;
}

.portfolio-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(70px, 10vw, 150px);
    font-weight: 400;
    line-height: .8;
    letter-spacing: -7px;
    margin-top: 60px;
}

/* =====================================================
   GALLERIES (CLEAN, PROPORTIONAL 3-COLUMN MASONRY)
===================================================== */

.gallery-grid,
.service-gallery {
    column-count: 3;
    column-gap: 28px;
    display: block;
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
}

.gallery-grid .gallery-item,
.service-gallery .gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    cursor: pointer;
}

.gallery-grid .gallery-image-wrapper,
.service-gallery .gallery-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.gallery-grid .gallery-image-wrapper {
    background: #222;
}

.service-gallery .gallery-image-wrapper {
    background: #e8e6e1;
}

.gallery-grid .gallery-media,
.service-gallery .gallery-media {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    transition:
        transform 0.8s cubic-bezier(.16, 1, .3, 1),
        filter .4s;
}

.gallery-grid .gallery-item:hover .gallery-media,
.service-gallery .gallery-item:hover .gallery-media {
    transform: scale(1.03);
    filter: brightness(.85);
}

.gallery-grid .gallery-caption,
.service-gallery .gallery-caption {
    display: flex;
    justify-content: space-between;
    padding: 10px 0 0;
    font-size: 8px;
    letter-spacing: 2px;
    color: #888;
}

.gallery-grid .gallery-caption span:first-child,
.service-gallery .gallery-caption span:first-child {
    transition: color .3s ease;
}

.gallery-grid .gallery-item:hover .gallery-caption span:first-child,
.service-gallery .gallery-item:hover .gallery-caption span:first-child {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




/* =====================================================
   ABOUT PREVIEW
===================================================== */

.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 800px;
    background: #dedcd7;
}

.about-preview-image {
    min-height: 700px;
}

.about-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-preview-content {
    padding: 10vw 8vw;
}

.about-preview-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(70px, 8vw, 120px);
    font-weight: 400;
    line-height: .8;
    letter-spacing: -6px;
    margin: 80px 0;
}

.about-preview-content p {
    max-width: 440px;
    color: #666;
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 50px;
}

.minimal-link {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 2px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 8px;
    transition: all .35s ease;
}

.minimal-link:hover {
    color: var(--brand-magenta);
    border-bottom-color: var(--brand-magenta);
    letter-spacing: 3px;
}



/* =====================================================
   CONTACT
===================================================== */

.contact {
    height: 100vh;
    min-height: 700px;
    position: relative;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-background {
    position: absolute;
    inset: 0;
}

.contact-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

.contact-content {
    position: relative;
    text-align: center;
}

.contact-content > span {
    font-size: 9px;
    letter-spacing: 3px;
}

.contact-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(80px, 12vw, 180px);
    font-weight: 400;
    line-height: .78;
    letter-spacing: -8px;
    margin: 60px 0;
}

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    padding: 17px 34px;
    font-size: 9px;
    letter-spacing: 2px;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
    color: white;
}

.contact-button:hover {
    background: var(--brand-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 10px 30px -5px var(--brand-glow);
    transform: translateY(-2px);
}

.call-now-btn {
    background: rgba(255, 255, 255, 0.08);
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    font-size: 9px;
    letter-spacing: 1px;
}

.contact-details a {
    border-bottom: 1px solid rgba(255,255,255,.5);
    padding-bottom: 5px;
    transition: all .3s ease;
}

.contact-details a:hover {
    border-bottom-color: var(--brand-magenta);
    color: white;
    background: var(--brand-gradient-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #111;
    color: #777;
    padding: 25px 4vw;
    display: grid;
    grid-template-columns: 1.5fr 1fr repeat(5, auto);
    gap: 30px;
    font-size: 8px;
    letter-spacing: 1.5px;
}

.footer a {
    color: white;
    transition: color .3s ease;
}

.footer a:hover {
    background: var(--brand-gradient-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =====================================================
   FLOATING ACTION BUTTONS (CALL NOW & WHATSAPP)
===================================================== */

.floating-actions {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 990;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #111;
    color: white;
    padding: 12px 18px 12px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-btn svg {
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.floating-btn span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    color: #f4f3f0;
    transition: all 0.3s ease;
}

.call-float svg {
    fill: #ffffff;
    width: 18px;
    height: 18px;
}

.whatsapp-float svg {
    fill: #25D366;
    width: 20px;
    height: 20px;
}

.floating-btn:hover {
    background: #181818;
    border-color: rgba(199, 6, 255, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 35px -5px var(--brand-glow);
}

.call-float:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.whatsapp-float:hover svg {
    transform: scale(1.1);
}

.floating-btn:hover span {
    background: var(--brand-gradient-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.lightbox-open .floating-actions,
body.lightbox-open .floating-btn {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(20px);
}



/* =====================================================
   SERVICE PAGE
===================================================== */

.service-header {
    color: #111;
    position: absolute;
}

.service-hero {
    min-height: 75vh;
    padding: 180px 8vw 100px;
    display: flex;
    align-items: flex-end;
}

.service-hero-content {
    max-width: 1200px;
}

.service-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(70px, 11vw, 170px);
    font-weight: 400;
    line-height: .82;
    letter-spacing: -7px;
    margin: 50px 0;
}

.service-hero p {
    max-width: 580px;
    font-size: 19px;
    line-height: 1.75;
    color: #555;
}

.service-work {
    padding: 80px 5vw 160px;
    max-width: 1420px;
    margin: 0 auto;
}

.service-work-heading {
    margin-bottom: 60px;
}

.service-work-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 7vw, 100px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -4px;
    margin-top: 24px;
}

.other-services {
    padding: 120px 8vw;
    background: #111;
    color: white;
}

.other-services h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 400;
    letter-spacing: -5px;
    margin: 50px 0 80px;
}

.other-services-links {
    border-top: 1px solid #444;
}

.other-services-links a {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #444;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    transition: padding .4s;
}

.other-services-links a:hover {
    padding-left: 15px;
}

.other-services-links a:hover span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* =====================================================
   ABOUT PAGE
===================================================== */

.about-page-hero {
    min-height: 75vh;
    padding: 180px 8vw 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-page-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(90px, 15vw, 230px);
    font-weight: 400;
    line-height: .75;
    letter-spacing: -10px;
    margin-top: 70px;
}

.about-page-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #111;
    color: white;
}

.about-page-image {
    min-height: 800px;
}

.about-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page-text {
    padding: 10vw 8vw;
}

.about-page-text h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 6vw, 90px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -4px;
    margin: 70px 0;
}

.about-page-text p {
    max-width: 520px;
    color: #aaa;
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-philosophy {
    padding: 180px 8vw;
}

.about-philosophy h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(70px, 10vw, 150px);
    font-weight: 400;
    line-height: .8;
    letter-spacing: -7px;
    margin: 70px 0;
}

.about-philosophy p {
    max-width: 400px;
    margin-left: 25%;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.about-services {
    padding: 120px 8vw 180px;
    background: #dedcd7;
}

.about-service-list {
    margin-top: 70px;
    border-top: 1px solid #aaa;
}

.about-service-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #aaa;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(25px, 3vw, 45px);
    transition: padding .4s;
}

.about-service-list a:hover {
    padding-left: 15px;
}



/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.97);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 88vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 88vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    background: none;
    border: 0;
    font-size: 45px;
    cursor: pointer;
    z-index: 5;
    transition: color .3s ease, transform .3s ease;
}

.lightbox-close:hover {
    color: var(--brand-magenta);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    color: white;
    font-size: 25px;
    cursor: pointer;
    padding: 30px;
    z-index: 5;
    transition: color .3s ease, transform .3s ease;
}

.lightbox-prev:hover {
    color: var(--brand-magenta);
    transform: translateY(-50%) translateX(-4px);
}

.lightbox-next:hover {
    color: var(--brand-magenta);
    transform: translateY(-50%) translateX(4px);
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 9px;
    letter-spacing: 2px;
}

.lightbox-counter .current-image {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}



/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.2,.6,.2,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .site-header {
        padding: 25px 6vw;
    }

    .hero {
        min-height: 650px;
    }

    .hero-top {
        top: 100px;
        left: 6vw;
        right: 6vw;
    }

    .hero-top span:last-child {
        display: none;
    }

    .hero-title {
        left: 6vw;
        bottom: 18vh;
    }

    .hero-title h1 {
        font-size: 65px;
        letter-spacing: -3px;
    }

    .hero-bottom {
        left: 6vw;
        right: 6vw;
    }

    .statement {
        padding: 100px 6vw 120px;
    }

    .statement-content {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-top: 60px;
    }

    .statement-content h2 {
        font-size: 70px;
        letter-spacing: -3px;
    }

    .services {
        padding: 80px 6vw 110px;
    }

    .services-heading {
        margin: 50px 0 60px;
    }

    .services-heading h2 {
        font-size: 65px;
        letter-spacing: -3px;
    }

    .service-row {
        grid-template-columns: 12% 1fr 30px;
        gap: 10px;
        padding: 30px 0;
    }

    .service-description {
        display: none;
    }

    .service-title h3 {
        font-size: 28px;
    }

    .service-arrow {
        font-size: 20px;
    }

    .portfolio {
        padding: 80px 5vw 100px;
    }

    .portfolio-heading {
        margin: 0 auto 50px;
        padding: 0;
    }

    .portfolio-heading h2 {
        font-size: 65px;
        letter-spacing: -3px;
    }

    .gallery-grid,
    .service-gallery {
        column-count: 2;
        column-gap: 20px;
    }

    .gallery-grid .gallery-item,
    .service-gallery .gallery-item {
        margin-bottom: 22px;
    }

    .gallery-grid .gallery-media,
    .service-gallery .gallery-media {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .about-preview {
        grid-template-columns: 1fr;
    }

    .about-preview-image {
        min-height: 550px;
    }

    .about-preview-content {
        padding: 90px 6vw;
    }

    .about-preview-content h2 {
        font-size: 70px;
        letter-spacing: -3px;
        margin: 60px 0;
    }

    .contact {
        min-height: 650px;
    }

    .contact-content h2 {
        font-size: 75px;
        letter-spacing: -4px;
    }

    .contact-details {
        flex-direction: column;
        gap: 15px;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        line-height: 1.6;
    }

    .service-hero {
        min-height: 75vh;
        padding: 150px 6vw 80px;
    }

    .service-hero h1 {
        font-size: 65px;
        letter-spacing: -3px;
        margin: 45px 0;
    }

    .service-work {
        padding: 80px 5vw 100px;
    }

    .service-work-heading {
        margin-bottom: 60px;
    }

    .service-work-heading h2 {
        font-size: 60px;
    }

    .other-services {
        padding: 90px 6vw;
    }

    .other-services h2 {
        font-size: 65px;
    }

    .other-services-links a {
        font-size: 20px;
    }

    .about-page-hero {
        min-height: 70vh;
        padding: 150px 6vw 80px;
    }

    .about-page-hero h1 {
        font-size: 85px;
        letter-spacing: -5px;
    }

    .about-page-main {
        grid-template-columns: 1fr;
    }

    .about-page-image {
        min-height: 550px;
    }

    .about-page-text {
        padding: 90px 6vw;
    }

    .about-page-text h2 {
        font-size: 55px;
        margin: 50px 0;
    }

    .about-philosophy {
        padding: 100px 6vw;
    }

    .about-philosophy h2 {
        font-size: 65px;
        letter-spacing: -3px;
    }

    .about-philosophy p {
        margin-left: 0;
    }

    .about-services {
        padding: 90px 6vw;
    }

    .about-service-list a {
        font-size: 22px;
    }

    .lightbox {
        padding: 20px;
    }

    .lightbox-content img,
    .lightbox-content video {
        max-width: 94vw;
        max-height: 80vh;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 15px;
        font-size: 18px;
    }

    .floating-actions {
        bottom: 20px;
        right: 18px;
        gap: 10px;
    }

    .floating-btn {
        padding: 13px;
        border-radius: 50%;
    }

    .floating-btn span {
        display: none;
    }

}

@media (max-width: 600px) {
    .gallery-grid,
    .service-gallery {
        column-count: 3;
        column-gap: 8px;
    }

    .gallery-grid .gallery-item,
    .service-gallery .gallery-item {
        margin-bottom: 8px;
    }

    .gallery-grid .gallery-caption,
    .service-gallery .gallery-caption {
        padding: 4px 0 0;
        font-size: 6px;
        letter-spacing: 0.5px;
    }
}

/* =====================================================
   REVIEWS PAGE & GOOGLE BUSINESS PROFILE
===================================================== */

.reviews-hero {
    min-height: 48vh;
    padding: 180px 8vw 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #f4f3f0;
}

.reviews-hero > span {
    font-size: 9px;
    letter-spacing: 3px;
    color: #777;
    font-weight: 600;
}

.reviews-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(65px, 12vw, 170px);
    font-weight: 400;
    line-height: .8;
    letter-spacing: -7px;
    margin-top: 40px;
}

.reviews-container {
    padding: 20px 8vw 140px;
    background: #111;
    color: white;
}

/* GOOGLE BUSINESS SUMMARY BANNER */
.google-summary-card {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 36px 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    transition: border-color .3s ease;
}

.google-summary-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.google-summary-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.google-icon-wrapper {
    width: 58px;
    height: 58px;
    background: #202124;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.google-score-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.google-score-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-score-num {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    color: white;
}

.google-stars {
    display: flex;
    gap: 3px;
    color: #FBBC04;
    font-size: 20px;
    line-height: 1;
}

.google-meta {
    font-size: 11px;
    letter-spacing: 1px;
    color: #999;
}

.google-verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(30, 142, 62, 0.15);
    border: 1px solid rgba(52, 168, 83, 0.35);
    color: #81c995;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
}

.google-summary-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(.16, 1, .3, 1);
    cursor: pointer;
    text-decoration: none;
}

.google-btn-primary {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 6px 22px -3px var(--brand-glow);
}

.google-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px 0 var(--brand-glow);
    color: white;
}

.google-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    background: rgba(255, 255, 255, 0.04);
}

.google-btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

/* REVIEWS GRID & WIDGET */
.reviews-widget-container {
    margin-bottom: 80px;
    width: 100%;
    min-height: 200px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.review-card {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), border-color 0.4s, box-shadow 0.4s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #252525;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin: 0 0 4px;
}

.reviewer-service-tag {
    font-size: 8px;
    letter-spacing: 1.5px;
    color: #888;
    text-transform: uppercase;
}

.review-google-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.85;
}

.review-card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.review-card-stars {
    color: #FBBC04;
    font-size: 15px;
    letter-spacing: 1px;
}

.review-date {
    font-size: 9px;
    color: #777;
    letter-spacing: 1px;
}

.review-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #bbb;
    margin: 0;
    font-style: italic;
}

/* REVIEWS CALLOUT */
.reviews-callout {
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 60px 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.reviews-callout h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: -1px;
    margin: 0;
}

.reviews-callout p {
    max-width: 550px;
    font-size: 14px;
    line-height: 1.7;
    color: #888;
    margin: 0;
}

/* HOMEPAGE REVIEWS PREVIEW SECTION */
.home-reviews {
    padding: 120px 5vw 140px;
    background: #111;
    color: white;
}

.home-reviews-header {
    max-width: 1420px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}

.home-reviews-title span {
    font-size: 9px;
    letter-spacing: 3px;
    color: #888;
}

.home-reviews-title h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(55px, 8vw, 110px);
    font-weight: 400;
    line-height: .85;
    letter-spacing: -5px;
    margin-top: 30px;
}

.home-reviews-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
}

.home-reviews-rating-pill .stars {
    color: #FBBC04;
    font-size: 16px;
}

.home-reviews-rating-pill .rating-text {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #ccc;
    font-weight: 600;
}

.home-reviews-footer {
    max-width: 1420px;
    margin: 50px auto 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* RESPONSIVE STYLES FOR REVIEWS */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-hero {
        padding: 140px 6vw 30px;
    }

    .reviews-hero h1 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .reviews-container {
        padding: 0 6vw 100px;
    }

    .google-summary-card {
        padding: 24px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .google-summary-actions {
        width: 100%;
        flex-direction: column;
    }

    .google-summary-actions .google-btn {
        width: 100%;
        justify-content: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 24px 20px;
    }

    .reviews-callout {
        padding: 40px 20px;
    }

    .home-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =====================================================
   SPACE STUDIO PAGE STYLES
===================================================== */
.space-hero {
    position: relative;
    padding: 200px 4vw 90px;
    background-color: #0c0c0c;
    background-image: linear-gradient(180deg, rgba(12, 12, 12, 0.65) 0%, rgba(12, 12, 12, 0.85) 60%, #0c0c0c 100%), url('gallery/space-studio-assests/hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
}

.space-logo-img {
    height: 24px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.site-header.scrolled .space-logo-img {
    filter: invert(1);
}

.space-studio-brand:hover .space-logo-img {
    opacity: 0.85;
}

.space-hero-content {
    max-width: 1420px;
    margin: 0 auto;
}

.space-hero-content .section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 9px;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 25px;
}

.space-badge {
    background: var(--brand-gradient);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.space-hero-content h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(55px, 8vw, 110px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -5px;
    margin-bottom: 30px;
}

.space-hero-desc {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 40px;
}

.space-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.space-features-section {
    padding: 100px 4vw;
    background: #141414;
    color: white;
}

.space-section-header {
    max-width: 1420px;
    margin: 0 auto 50px;
}

.space-section-header span {
    font-size: 9px;
    letter-spacing: 3px;
    color: #888;
}

.space-section-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    letter-spacing: -2px;
    margin-top: 15px;
}

.space-features-grid {
    max-width: 1420px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.space-feature-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 36px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.space-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(199, 6, 255, 0.35);
}

.space-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(199, 6, 255, 0.12);
    color: var(--brand-magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.space-feature-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #fff;
}

.space-feature-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #888;
}

.space-gallery-section {
    padding: 100px 4vw;
    background: #0f0f0f;
    color: white;
}

.space-cta-section {
    padding: 120px 4vw;
    background: #141414;
    color: white;
    text-align: center;
}

.space-cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1c1c1c 0%, #151515 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.space-cta-box h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 5vw, 55px);
    font-weight: 400;
    letter-spacing: -2px;
}

.space-cta-box p {
    max-width: 540px;
    font-size: 15px;
    line-height: 1.8;
    color: #999;
}

.space-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 992px) {
    .space-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .space-hero {
        padding: 140px 6vw 50px;
    }
    .space-logo-img {
        height: 18px;
    }
    .space-features-section,
    .space-gallery-section,
    .space-cta-section {
        padding: 70px 6vw;
    }
    .space-features-grid {
        grid-template-columns: 1fr;
    }
    .space-cta-box {
        padding: 40px 20px;
    }
    .space-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .space-cta-buttons .google-btn {
        width: 100%;
        justify-content: center;
    }
}