/* =====================================================
   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;
    gap: 35px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.desktop-nav a {
    position: relative;
}

.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%;
}

.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;
    }
}