/* ============================================
   MASTER TATTOO — Dark & Moody Aesthetic
   Inspired by Rowan Black style
   ============================================ */

/* --- Design Tokens --- */
:root {
    --black: #1D1D1D;
    --black-soft: #0a0a0a;
    --charcoal: #141414;
    --smoke: #1c1c1c;
    --ash: #2a2a2a;
    --steel: #7a7a7a;
    --bone: #b8b0a8;
    --cream: #d4cdc5;
    --white: #f0ebe5;
    --white-pure: #ffffff;
    --brand-pink: #D81B60;

    --font-display: 'freightbigcmp-pro', 'Bodoni Moda', 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-title: 'freightbigcmp-pro', 'Bodoni Moda', 'Playfair Display', serif;

    --nav-height: 72px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

    /* Hero Card Spread Variables - Adjusted for larger gaps between center and adjacent */
    --hero-l1-x: -15px;
    --hero-l2-x: 20px;
    --hero-l3-x: 100px;
    --hero-r1-x: 15px;
    --hero-r2-x: -20px;
    --hero-r3-x: -100px;
    --card-radius: 48px;
}

@media (max-width: 768px) {
    :root {
        --hero-l1-x: -5px;
        --hero-l2-x: 5px;
        --hero-l3-x: 15px;
        --hero-r1-x: 5px;
        --hero-r2-x: -5px;
        --hero-r3-x: -15px;
        --card-radius: 20px;
    }
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto !important;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--cream);
    overflow-x: hidden;
}

#cursor-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.grayscale-filter {
    filter: grayscale(100%);
}

.font-display {
    font-family: var(--font-display);
}

.font-body {
    font-family: var(--font-body);
}

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

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
@keyframes navFadeDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 5vw, 72px);
    height: var(--nav-height);
    /* Faint top gradient — fades to transparent */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
    
    /* Ensure immediate visibility on load */
    opacity: 1;
    transform: translateY(0);
}

/* Hide when scrolling down — slide up only, no opacity fight with the fadeIn animation */
#main-nav.nav--hidden {
    transform: translateY(-100%);
}

/* Legacy scrolled class — keep transparent gradient, no solid bg */
.nav--scrolled {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
}

.nav__logo {
    z-index: 1001;
    display: flex;
    align-items: center;
}

.nav__logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav__logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white-pure);
    text-transform: uppercase;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav__logo-link:hover .nav__logo-text {
    opacity: 0.8;
}

.nav__logo-svg {
    height: 24px;
    width: auto;
    display: block;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--white-pure);
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav__link:hover,
.nav__link.active {
    color: var(--brand-pink, #D81B60) !important;
    font-weight: 500 !important;
}

.nav__link.active::before,
.nav__link.active::after {
    content: none !important;
}

.nav__instagram-li {
    display: flex;
    align-items: center;
}

.nav__instagram-icon {
    display: flex;
    align-items: center;
}

.nav__instagram-icon img {
    height: 15px;
    width: 15px;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.nav__instagram-icon:hover img {
    opacity: 1;
}

.nav__cta {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--white-pure);
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav__calendar-icon {
    width: 14px;
    height: 14px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.nav__cta:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.nav__cta:hover .nav__calendar-icon {
    filter: invert(1);
}

.nav__cta:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.35s var(--ease-out-expo);
    transform-origin: center;
}

.nav__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

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

.nav__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}



/* ============================================
   NEW GALLERY SECTION — Asymmetrical Grid
   ============================================ */
.gallery-scroll-wrapper {
    position: relative;
    width: 100%;
    height: 300vh;
    /* gives enough scrolling distance for the animation */
    margin-top: 60px;
}

.new-gallery {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 100vh;
    min-height: 600px;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 5;
}

.new-gallery__item {
    position: absolute;
    will-change: transform, opacity;
    /* This transition interpolates between the JS scroll ticks to create a smooth, floating momentum */
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
}

.new-gallery__item--1 {
    top: 0;
    left: 0;
    width: 65%;
    height: 32.4%;
}

.new-gallery__item--2 {
    top: 16.6%;
    right: 0;
    width: 30%;
    height: 50.9%;
}

.new-gallery__item--3 {
    top: 34.2%;
    left: 0;
    width: 32%;
    height: 34.2%;
}

.new-gallery__item--4 {
    top: 36.1%;
    left: 34%;
    width: 33%;
    height: 30.5%;
    transform-origin: center center;
}

.new-gallery__item--4 .new-gallery__img {
    object-position: 20% center !important; /* Crop/align to the left to show the woman and flower tattoo */
}

.new-gallery__item--5 {
    top: 72.2%;
    left: 2%;
    width: 96%;
    height: 25.9%;
}

.new-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.new-gallery__img--opacity {
    opacity: 0.7;
}

.new-gallery__item--5 .new-gallery__img {
    opacity: 0.8;
}

/* Removed old local button styles */

/* ============================================
   GALLERY OVERLAY TEXT
   ============================================ */

.gallery-text {
    position: absolute;
    right: 8%;
    top: 15%;
    z-index: 30;
    text-align: right;
    pointer-events: none;
    /* enabled via JS when visible */
}

.gallery-text__title {
    font-family: var(--font-display);
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 400;
    color: #1D1D1D; /* Dark grey for desktop contrast against light backgrounds */
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.gallery-text__title .char {
    display: inline-block;
    opacity: 0;
    transform: translateX(40px);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease;
}

.gallery-text__cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1D1D1D; /* Dark grey */
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(29, 29, 29, 0.4); /* Dark border color */
    opacity: 0;
    transform: translateX(40px);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, border-color 0.3s ease;
}

.gallery-text__cta:hover {
    border-color: #1D1D1D;
}



/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    /* Keep desktop asymmetrical layout and zoom-in scroll effect on mobile */
    .gallery-scroll-wrapper {
        height: 180vh !important; /* Elegant scroll track on mobile */
        margin-top: 40px;
    }

    .new-gallery {
        position: sticky !important;
        top: 0 !important;
        height: 100vh !important;
        min-height: 560px !important;
        overflow: hidden !important;
    }

    .new-gallery__item {
        position: absolute !important;
        transition: none !important; /* Disable transition on mobile to prevent touch scroll lag and glitching */
    }

    /* Centered, premium text overlay on mobile viewports */
    .gallery-text {
        position: absolute !important;
        top: 35% !important;      /* Shifted text even more up (from 42% to 35%) */
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        text-align: center !important;
        width: 90% !important;
        max-width: 320px !important;
        right: auto !important;
    }
    
    .gallery-text__title {
        font-size: clamp(2.4rem, 8vw, 3.6rem) !important;
        justify-content: center !important;
        color: #ffffff !important; /* Keep white on mobile */
    }
    
    .gallery-text__cta {
        margin: 20px auto 0 !important;
        display: inline-block !important;
        color: #ffffff !important; /* Keep white on mobile */
        border-color: rgba(255, 255, 255, 0.4) !important;
    }
    .gallery-text__cta:hover {
        border-color: #ffffff !important;
    }
}
@media (max-width: 768px) {
    /* Consolidation of mobile navigation and hero styles */
    .nav__links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.6s var(--ease-out-expo);
        z-index: 999;
        display: flex;
    }

    .nav__links.active {
        transform: translateX(0);
    }

    .nav__burger {
        display: flex !important;
        z-index: 1001 !important;
        margin-right: 10px !important;
    }
}

.nav__cta-mobile {
    display: none;
}

@media (max-width: 900px) {
    .nav__cta-desktop {
        display: none !important;
    }

    .nav__cta-mobile {
        display: inline !important;
        white-space: nowrap !important;
        font-size: 10.5px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
    }

    .nav__cta {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        padding: 6px 14px !important;
        background: var(--brand-pink) !important;
        border: 1px solid var(--brand-pink) !important;
        color: #ffffff !important;
        border-radius: 50px !important;
        margin-left: auto !important;
        margin-right: 10px !important;
        z-index: 1001 !important;
        box-shadow: 0 4px 15px rgba(216, 27, 96, 0.4) !important;
        text-decoration: none !important;
    }

    .nav__cta .nav__calendar-icon {
        width: 12px !important;
        height: 12px !important;
    }

    .nav__link {
        font-size: 22px;
        letter-spacing: 4px;
        text-transform: uppercase;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0 16px !important;
    }
    .nav__cta {
        padding: 5px 11px !important;
        gap: 4px !important;
        margin-right: 6px !important;
    }
    .nav__cta-mobile {
        font-size: 9.5px !important;
    }
    .nav__logo-text {
        font-size: 12px;
        letter-spacing: 3px;
    }
}

/* --- Testimonial Section Utilities --- */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.spotlight {
    background: radial-gradient(600px circle at 50% 50%, rgba(255, 255, 255, 0.03), transparent 40%);
}

.voices-title {
    font-family: 'freightbigcmp-pro', serif !important;
}

.fader-left {
    background: linear-gradient(
        to right,
        #1D1D1D 0%,
        rgba(29, 29, 29, 0.95) 15%,
        rgba(29, 29, 29, 0.8) 30%,
        rgba(29, 29, 29, 0.6) 45%,
        rgba(29, 29, 29, 0.4) 60%,
        rgba(29, 29, 29, 0.2) 75%,
        rgba(29, 29, 29, 0.05) 90%,
        rgba(29, 29, 29, 0) 100%
    );
}

.fader-right {
    background: linear-gradient(
        to left,
        #1D1D1D 0%,
        rgba(29, 29, 29, 0.95) 15%,
        rgba(29, 29, 29, 0.8) 30%,
        rgba(29, 29, 29, 0.6) 45%,
        rgba(29, 29, 29, 0.4) 60%,
        rgba(29, 29, 29, 0.2) 75%,
        rgba(29, 29, 29, 0.05) 90%,
        rgba(29, 29, 29, 0) 100%
    );
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--charcoal);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
    position: relative;
    overflow: hidden;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer__brand-reveal {
    margin-top: 40px;
    margin-bottom: 0;
    overflow: hidden;
    padding: 60px 20px 90px;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url("images/sec-1-img-1.jpg");
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__brand-reveal:hover {
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.72)), url("images/sec-1-img-1.jpg");
}

.footer__brand-text {
    font-family: var(--font-display);
    font-size: clamp(40px, 12vw, 180px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.footer__brand-reveal:hover .footer__brand-text {
    transform: scale(1.02);
    color: rgba(255, 255, 255, 0.45);
    text-shadow: 0 0 45px rgba(255, 255, 255, 0.25);
}

.footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__col-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__col-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--steel);
    margin-bottom: 20px;
    max-width: 300px;
}

.footer__socials {
    display: flex;
    gap: 15px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--steel);
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
}

.footer__social-link span {
    font-size: 18px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__list-link {
    font-size: 13px;
    color: var(--steel);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer__list-link:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--steel);
    font-size: 13px;
}

.footer__contact-item span:first-child {
    font-size: 16px;
    color: var(--bone);
}

.footer__back-to-top {
    display: none !important;
}

.footer__back-to-top:hover {
    gap: 15px;
}

.footer__back-to-top span:last-child {
    font-size: 18px;
}

.footer__bottom-overlay {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1.5px;
    z-index: 2;
}

.footer__bottom-overlay a {
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s ease;
}

.footer__bottom-overlay a:hover {
    color: var(--white);
}

.footer__copyright {
    font-size: 9px !important;
    letter-spacing: 1px !important;
    opacity: 0.8;
}

.footer__legal {
    display: flex;
    gap: 30px;
}

.footer__studio-info {
    margin-bottom: 12px;
}

.footer__studio-title {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__flag-usa {
    display: inline-block;
    width: 14px;
    height: 9px;
    background: url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 20 13%22><rect width=%2220%22 height=%2213%22 fill=%22%23fff%22/><path d=%22M0,1h20M0,3h20M0,5h20M0,7h20M0,9h20M0,11h20%22 stroke=%22%23B22234%22 stroke-width=%221%22/><rect width=%228%22 height=%227%22 fill=%22%233C3B6E%22/><circle cx=%221.5%22 cy=%221.5%22 r=%220.3%22 fill=%22%23fff%22/><circle cx=%223.5%22 cy=%221.5%22 r=%220.3%22 fill=%22%23fff%22/><circle cx=%225.5%22 cy=%221.5%22 r=%220.3%22 fill=%22%23fff%22/><circle cx=%222.5%22 cy=%223.5%22 r=%220.3%22 fill=%22%23fff%22/><circle cx=%224.5%22 cy=%223.5%22 r=%220.3%22 fill=%22%23fff%22/><circle cx=%221.5%22 cy=%225.5%22 r=%220.3%22 fill=%22%23fff%22/><circle cx=%223.5%22 cy=%225.5%22 r=%220.3%22 fill=%22%23fff%22/><circle cx=%225.5%22 cy=%225.5%22 r=%220.3%22 fill=%22%23fff%22/></svg>') no-repeat center;
    background-size: cover;
    border-radius: 1px;
}

.footer__flag-jam {
    display: inline-block;
    width: 14px;
    height: 9px;
    background: url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 20 13%22><rect width=%2220%22 height=%2213%22 fill=%22%23FED100%22/><polygon points=%220,1.5 7.5,6.5 0,11.5%22 fill=%22%23000%22/><polygon points=%2220,1.5 12.5,6.5 20,11.5%22 fill=%22%23000%22/><polygon points=%222.5,0 10,5 17.5,0%22 fill=%22%23009B3A%22/><polygon points=%222.5,13 10,8 17.5,13%22 fill=%22%23009B3A%22/></svg>') no-repeat center;
    background-size: cover;
    border-radius: 1px;
}

.footer__contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__contact-item a:hover {
    color: var(--white);
}

.footer__contact-item.align-start {
    align-items: flex-start;
}

.footer__contact-item.align-start span:first-child {
    margin-top: 2px;
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.footer__social-link:hover svg {
    transform: scale(1.1);
}


/* Responsive Footer */
@media (max-width: 1024px) {
    .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 0 0;
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
        text-align: center !important;
    }

    .footer__main {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 36px !important;
        padding: 0 24px !important;
    }

    /* Col 1: About & Socials */
    .footer__main .footer__col:first-child {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .footer__main .footer__col:first-child .footer__col-title,
    .footer__col-text {
        display: none !important;
    }
    .footer__socials {
        justify-content: center !important;
        gap: 16px !important;
    }

    /* Col 2: Navigate Links (Horizontal inline list) */
    .footer__main .footer__col:nth-child(2) {
        width: 100% !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding-top: 24px !important;
    }
    .footer__main .footer__col:nth-child(2) .footer__col-title {
        display: none !important;
    }
    .footer__main .footer__col:nth-child(2) .footer__list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px 20px !important;
        padding: 0 !important;
    }
    .footer__main .footer__col:nth-child(2) .footer__list-link {
        font-size: 12px !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    /* Col 3: Services (Hide on mobile to reduce redundant links and clutter) */
    .footer__main .footer__col:nth-child(3) {
        display: none !important;
    }

    /* Col 4: Locations (Stacked & centered) */
    .footer__main .footer__col:last-child {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding-top: 24px !important;
    }
    .footer__main .footer__col:last-child .footer__col-title {
        margin-bottom: 0 !important;
        font-size: 14px !important;
        letter-spacing: 2px !important;
    }
    .footer__studio-info {
        margin-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    .footer__studio-title {
        justify-content: center !important;
        font-size: 13px !important;
        letter-spacing: 1px !important;
        margin-bottom: 6px !important;
    }
    .footer__studio-info p {
        font-size: 12px !important;
        line-height: 1.45 !important;
        max-width: 280px !important;
        color: rgba(232, 224, 216, 0.5) !important;
    }
    .footer__studio-info a {
        font-size: 12px !important;
        margin-top: 4px !important;
        display: inline-block !important;
    }

    /* Email Contact */
    .footer__main .footer__col:last-child > .footer__contact-item {
        display: none !important;
    }
    
    .footer__main .footer__col:last-child > .footer__back-to-top {
        margin-top: 0 !important;
    }

    /* Brand Reveal Section */
    .footer__brand-reveal {
        margin-top: 20px !important;
        padding: 24px 20px !important;
        background-image: none !important;
        background-color: transparent !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .footer__brand-text {
        display: none !important;
    }

    .footer__bottom-overlay {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
    }

    .footer__legal {
        justify-content: center;
    }
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
    will-change: transform, opacity;
}

.reveal--active {
    opacity: 1;
    transform: translateY(0);
}

.delay-200 {
    transition-delay: 0.2s !important;
}

/* ============================================
   WT HERO SECTION - Modern Parallax Composition
   ============================================ */
.hero-section {
    font-size: 1vw; /* local font-size root for em scaling */
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

@media (max-width: 1199px) {
    .hero-section {
        font-size: 1.5vw; /* Adjust slightly for tablets to avoid tiny fonts */
    }
}
@media (max-width: 640px) {
    .hero-section {
        font-size: 2.2vw; /* Adjust for mobile viewports */
    }
}

.hero-section .header-images-ct {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
@media (min-width: 1199px) {
    .hero-section .header-images-ct {
        height: 86.94%;
    }
}

/* Side Display Text Layout */
.hero-section .side-text {
    position: absolute;
    bottom: 20%;
    font-family: freightbigcmp-pro, serif;
    font-size: 9em;
    text-transform: uppercase;
    color: rgba(232, 232, 232, 0.35);
    font-weight: 300;
    letter-spacing: 0.15em;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    will-change: transform, opacity;
}
.hero-section .side-text.left-side {
    right: 50%;
    margin-right: 17em;
    left: auto;
}
.hero-section .side-text.right-side {
    left: 50%;
    margin-left: 17em;
    right: auto;
}

@media (max-width: 1199px) {
    .hero-section .side-text {
        font-size: 6em;
        bottom: 15%;
    }
    .hero-section .side-text.left-side {
        left: 5%;
        right: auto;
        margin-right: 0;
    }
    .hero-section .side-text.right-side {
        right: 5%;
        left: auto;
        margin-left: 0;
    }
}
@media (max-width: 640px) {
    .hero-section .side-text {
        font-size: 4em;
        bottom: 10%;
    }
    .hero-section .side-text.left-side {
        left: 3%;
    }
    .hero-section .side-text.right-side {
        right: 3%;
    }
}

/* Central Composition Arch */
.hero-section .elli-wrapper {
    position: relative;
    width: 66vw;
    max-width: 250px;
    height: 60vh;
    max-height: 410px;
    margin: 0 auto 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
@media (min-width: 1199px) {
    .hero-section .elli-wrapper {
        position: relative;
        height: 70vh;
        width: auto;
        max-width: none;
        max-height: none;
        margin: 0;
    }
}

.hero-section .elli {
    position: absolute;
    width: 120%;
    height: 110%;
    bottom: 0;
    left: 50%;
    transform: translate(calc(-50% + 1.2rem), 0) scale(0.95);
    transform-origin: bottom center;
    z-index: 3;
}
@media (min-width: 1199px) {
    .hero-section .elli {
        position: relative;
        width: 30em;
        height: 100%;
        max-width: none;
        margin: 0;
        transform: translate(1.2rem, 0) scale(0.92);
        left: auto;
    }
}
.hero-section .elli picture {
    height: 100%;
    display: block;
}
@media (min-width: 1199px) {
    .hero-section .elli picture.mobile {
        display: none;
    }
}
@media (max-width: 1199px) {
    .hero-section .elli picture.desktop {
        display: none;
    }
}
.hero-section .elli picture img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: bottom center;
}

.hero-section .text-ct {
    position: absolute;
    top: calc((var(--nav-height) + 42vh - 30px) / 2);
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 360px;
    z-index: 2;
    display: block;
}
@media (min-width: 1199px) {
    .hero-section .text-ct {
        bottom: auto;
        top: calc((var(--nav-height) + 30vh) / 2);
        width: max-content;
        max-width: none;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
}

/* Title displays */
.hero-section .desktop-hero-title {
    display: none;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-family: var(--font-display) !important;
    text-transform: uppercase;
    font-size: 12rem !important;
    line-height: 1.1;
    color: #E8E8E8;
    font-weight: 300;
    letter-spacing: 0.02em;
    perspective: 1000px;
    transform-style: preserve-3d;
}
@media (min-width: 1199px) {
    .hero-section .desktop-hero-title {
        display: flex;
    }
}

.hero-section .mobile-hero-title {
    display: block;
    text-align: center;
    font-family: var(--font-display) !important;
    text-transform: uppercase;
    font-size: clamp(2.4rem, 10vw, 4.2rem) !important;
    line-height: 1.05;
    color: #FFFFFF;
    font-weight: 300;
    letter-spacing: 0.05em;
    perspective: 1000px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
    white-space: nowrap; /* Keep title in one line */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-section .mobile-hero-title.on-screen {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@media (min-width: 1199px) {
    .hero-section .mobile-hero-title,
    .mobile-hero-title-ct {
        display: none !important;
    }
}

.mobile-hero-title-ct {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}
.mobile-hero-title-main {
    font-family: var(--font-display), serif !important;
    font-size: clamp(4.2rem, 16vw, 9rem) !important;
    font-weight: 300 !important;
    color: #FFFFFF !important;
    letter-spacing: 0.05em !important;
    margin: 0 0 8px 0 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    white-space: nowrap !important;
}
.mobile-hero-subtitle-main {
    display: flex;
    justify-content: center;
    gap: 14px;
    font-family: var(--font-body), sans-serif !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    color: var(--bone) !important;
    letter-spacing: 0.35em !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    margin-right: -0.35em !important;
}

.hero-section .text-ct .hero-subtitle {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.55em;
    color: var(--bone);
    text-transform: uppercase;
    text-align: center;
    margin-top: 2rem;
    width: 100%;
    margin-right: -0.55em; /* Offset letter spacing at end to keep centered */
}

/* 2-line premium mobile burger overrides */
@media (max-width: 768px) {
    .nav__burger {
        gap: 6px !important;
    }
    .nav__burger span:nth-child(2) {
        display: none !important;
    }
    .nav__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px) !important;
    }
    .nav__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px) !important;
    }
}

.hero-group {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    vertical-align: top;
}

.hero-letters {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-group-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.45em;
    color: var(--white-pure);
    text-transform: uppercase;
    text-align: center;
    margin-top: 0.1rem;
    width: 100%;
    margin-right: -0.45em; /* Offset letter spacing to center correctly */
}
@media (max-width: 1199px) {
    .hero-section .text-ct .hero-group-subtitle {
        margin-left: 0 !important;
    }
}

.hero-section .text-ct h1 .letter-ct {
    display: inline-block;
    transform-style: preserve-3d;
}
@media (min-width: 1199px) {
    .hero-section .text-ct h1 .letter-ct {
        transform: rotate3d(0, 1, 0, 70deg) translateZ(2rem) translateX(5rem) !important;
    }
    .hero-section .text-ct h1 .letter-ct.on-screen {
        transform: rotate3d(0, 1, 0, 0.01deg) translateZ(0) translateY(0) !important;
    }
}

.hero-section .text-ct h1 .letter-ct span {
    display: block;
}

.hero-section .text-ct h1 .mr {
    margin-right: 0.12em;
}
.hero-section .text-ct h1 .t {
    margin-left: 0.05em;
}

/* Soft Pink Spotlight behind the model */
.hero-section .pink-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25rem;
    height: 25rem;
    background: radial-gradient(circle at bottom center, rgba(255, 75, 140, 0.35) 0%, rgba(255, 75, 140, 0) 80%);
    z-index: 2; /* In front of elli-bg (1) but behind elli (3) */
    pointer-events: none;
    mix-blend-mode: screen;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition-delay: 0.8s !important;
}

@media (min-width: 1199px) {
    .hero-section .pink-spotlight {
        width: 35em;
        height: 35em;
        transform: translate(-50%, -40%);
        background: radial-gradient(circle at bottom center, rgba(255, 75, 140, 0.45) 0%, rgba(255, 75, 140, 0) 80%);
    }
}

/* Arch Foliage Background */
.hero-section .elli-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 8rem 8rem 0 0 !important;
    isolation: isolate; /* Clip screen blend mode and spotlight correctly */
    transform: translate3d(0, 0, 0); /* Force Hardware Accelerated clipping */
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-mask-image: -webkit-radial-gradient(white, black); /* Webkit force clip boundary */
}
@media (min-width: 1199px) {
    .hero-section .elli-bg {
        border-radius: 14.06em 14.06em 0 0 !important;
    }
}
.hero-section .elli-bg picture {
    height: 100%;
    display: block;
}
.hero-section .elli-bg picture img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    transform-origin: bottom;
    transition-duration: 1100ms !important;
}

/* Arrow indicator scroll line */
.hero-section .arrow-ct {
    display: none !important;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
@media (min-width: 1199px) {
    .hero-section .arrow-ct {
        display: none;
    }
}
.hero-section .arrow-ct .line {
    height: 50px;
    background-color: #AAAAAA;
    width: 1px;
    animation: elasticus 3.5s cubic-bezier(0.8, 0, 0.2, 1) infinite;
}

/* Foreground overlapping plant foliage leaves */
.hero-section .plant-ct {
    display: block;
    position: absolute;
    width: 100%;
    height: 34vh;
    max-height: 260px;
    bottom: 60px;
    left: 0;
    z-index: -1;
    pointer-events: none;
}
.hero-section .plant-ct picture {
    display: block;
    height: 100%;
}
.hero-section .plant-ct picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}
@media (min-width: 1199px) {
    .hero-section .plant-ct {
        width: 78.33em;
        height: 29.38em;
        inset: 0;
        margin: auto auto 0;
        z-index: -1;
        max-height: none;
    }
    .hero-section .plant-ct picture {
        display: inline;
        height: auto;
    }
    .hero-section .plant-ct picture img {
        position: absolute;
        object-fit: fill;
        height: 100%;
    }
}

/* Background dark paper textured backdrop */
.hero-section .header-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.hero-section .header-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url("images/texture-bg.jpg");
    background-size: cover;
    background-position: top;
}
.hero-section .header-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 29, 0.67);
    z-index: 1;
    mix-blend-mode: multiply;
}

/* Staggered loading state reveals */
.hero-section .side-text.left-side {
    opacity: 0 !important;
    transform: translate3d(-100px, 0, 0) !important;
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.hero-section .side-text.right-side {
    opacity: 0 !important;
    transform: translate3d(100px, 0, 0) !important;
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.hero-section .elli-bg picture img {
    opacity: 0 !important;
    transform: scale3d(0.95, 0.95, 1) !important;
    transition: opacity 2s cubic-bezier(0.16, 1, 0.3, 1), transform 2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.hero-section .text-ct h1 .letter-ct {
    opacity: 0 !important;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-section .elli picture img {
    opacity: 0 !important;
    transform: translate3d(0, 60px, 0) !important;
    transition: opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1), transform 2.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.hero-section .plant-ct picture img {
    opacity: 0 !important;
    transform: translate3d(0, 35px, 0) !important;
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-section.loaded .side-text.left-side,
.hero-section.loaded .side-text.right-side {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
    transition-delay: 0.2s !important;
}
.hero-section.loaded .elli-bg picture img {
    opacity: 1 !important;
    transform: scale3d(1, 1, 1) !important;
    transition-delay: 0.4s !important;
}
.hero-section.loaded .text-ct h1 .letter-ct {
    opacity: 1 !important;
}
.hero-section.loaded .text-ct h1 .letter-ct.on-screen {
    /* Apply rotation transform on loaded screen if supported */
}
.hero-section.loaded .elli picture img {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
    transition-delay: 0.6s !important;
}
.hero-section.loaded .plant-ct picture img {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
    transition-delay: 1s !important;
}
.hero-section.loaded .pink-spotlight {
    opacity: 1 !important;
}


/* Remove active transition friction during scroll */
.hero-section.scrolled .side-text.left-side,
.hero-section.scrolled .side-text.right-side,
.hero-section.scrolled .elli-bg picture img,
.hero-section.scrolled .text-ct h1 .letter-ct,
.hero-section.scrolled .elli picture img,
.hero-section.scrolled .plant-ct picture img,
.hero-section.scrolled .pink-spotlight {
    transition: none !important;
}


/* ============================================
   WT PASSION & PRECISION SECTION - Full Layout
   ============================================ */
.passion-section {
    position: relative;
    width: 100%;
    background-color: var(--black);
    overflow: visible;
    padding-top: 60px; /* Space between hero section and about section */
}

/* Scroll Wrapper and Inner for Sticky Scroll Parallax */
.passion-section .sec-1-scroll-wrapper {
    width: 100%;
}

@media (min-width: 1200px) {
    .passion-section .sec-1-scroll-wrapper {
        height: 160vh; /* Premium, perfectly balanced scroll reveal track */
    }
    
    .passion-section .sec-1-scroll-inner {
        height: 100vh;
        position: sticky;
        top: 0;
        display: flex;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }
}

/* 2-Column Grid Container */
.passion-container {
    width: 100%;
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
    align-items: center;
    position: relative;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .passion-container {
        height: 100vh;
        grid-template-columns: 1.3fr 0.7fr;
        padding: 0 70px 0 70px;
        gap: 60px;
        overflow: hidden;
        align-items: stretch;
    }
}

/* Left Section */
.passion-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .passion-left {
        height: 100%;
    }
}

/* Decorative Circle Line */
.passion-left .decorative-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    left: -10%;
    top: 0;
}

@media (min-width: 1200px) {
    .passion-left .decorative-circle {
        left: calc(-50vh - 70px);
        top: 0;
        transform: none;
        width: 100vh;
        height: 100vh;
    }
}

/* Reviews Custom Deep Centered Circle */
.reviews-left .decorative-circle {
    position: absolute;
    top: 38%;
    left: 0;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 1200px) {
    .reviews-left .decorative-circle {
        width: 820px;
        height: 820px;
        top: 35%; /* perfectly aligns vertically with the middle of Voices of the Archive text */
        left: 0; /* Center of the circle aligns with the left edge of the column, so half is off-screen */
        border: 1px solid rgba(255,255,255,0.04);
    }
}

/* Heading */
.passion-heading {
    font-family: 'freightbigcmp-pro', serif;
    font-size: clamp(3.5rem, 9vw, 5rem) !important;
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -1.5px;
    color: #F3F0F0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
    top: -30px;
    left: 20px;
    text-align: center;
}

.passion-heading span {
    display: block;
}

@media (min-width: 1200px) {
    .passion-heading {
        font-size: clamp(5.5rem, 8.5vw, 8.5rem);
        letter-spacing: -2px;
        line-height: 1;
        max-width: 800px;
        margin-bottom: 50px;
        top: -40px;
        left: 0px;
        text-align: center;
    }
}

/* Paragraph */
.passion-paragraph {
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.68);
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    z-index: 2;
    position: relative;
}

@media (min-width: 1200px) {
    .passion-paragraph {
        font-size: 14px;
        max-width: 540px;
        margin-left: 280px;
    }
}

.passion-btn {
    margin-left: 0;
}

@media (min-width: 1200px) {
    .passion-btn {
        margin-left: 280px;
    }
}

/* Right Section */
.passion-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .passion-right {
        height: 100%;
    }
}

/* Image Container */
.passion-right .multi-img-ct {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 440 / 840;
    position: relative;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .passion-right .multi-img-ct {
        width: 100%;
        height: 100vh;
        max-width: none;
        aspect-ratio: auto;
        overflow: hidden;
        border-radius: 0px;
    }
}

/* Image Positioning and Styling */
.passion-right .multi-img-ct picture {
    display: block;
    width: 100%;
}

.passion-right .multi-img-ct picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: contrast(1.05) brightness(0.92);
}

@media (min-width: 1200px) {
    .passion-right .multi-img-ct picture {
        position: absolute;
        width: 100%;
        overflow: hidden;
    }

    .passion-right .multi-img-ct picture img {
        position: absolute;
        width: 100%;
        height: 100vh; /* Force image height to match absolute parent container height */
        object-fit: cover;
    }

    .passion-right .multi-img-ct .first-img {
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1;
        transform-origin: top;
    }

    .passion-right .multi-img-ct .first-img img {
        top: 0;
        left: 0;
    }

    .passion-right .multi-img-ct .second-img {
        bottom: 0;
        left: 0;
        height: 0%;
        z-index: 2;
        transform-origin: bottom;
    }

    .passion-right .multi-img-ct .second-img img {
        bottom: 0;
        left: 0;
    }
}

/* Mobile Layout Shifting Parallax Offset */
@media (max-width: 1199px) {
    .passion-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important; /* Reduced gap from 40px to 15px */
    }
    
    .passion-right {
        grid-row: 1 !important; /* Images first */
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .passion-left {
        grid-row: 2 !important; /* Text second */
        width: 100% !important;
        margin-top: -65px !important; /* Pull the entire text section much closer to the overlapping images */
    }
    .passion-heading {
        top: -45px !important;        /* Pull the heading even closer to the images */
        left: 0 !important;           /* Center it perfectly horizontally on mobile */
        margin-bottom: 15px !important; /* Reduce space below heading */
    }

    .passion-right .multi-img-ct {
        position: relative !important;
        width: 100% !important;
        max-width: 350px !important; /* Increased mobile sizing from 330px to 350px */
        height: auto !important;
        display: block !important;
        padding-bottom: 0px !important; /* Reduced padding-bottom from 20px to 0px */
        box-sizing: border-box !important;
    }

    /* Right image (first-img, woman portrait) */
    .passion-right .multi-img-ct .first-img {
        position: relative !important;
        width: 75% !important; /* Increased width from 72% to 75% */
        margin-left: auto !important;
        display: block !important;
        z-index: 1 !important;
        border-radius: 4px !important;
        overflow: hidden !important;
    }

    .passion-right .multi-img-ct .first-img img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3 / 4.2 !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Left overlapping image (second-img, hands) */
    .passion-right .multi-img-ct .second-img {
        position: absolute !important;
        left: 0 !important;
        top: 0px !important; /* Starts exactly from the top */
        width: 48% !important; /* Increased width from 44% to 48% */
        z-index: 2 !important;
        border-radius: 4px !important;
        overflow: hidden !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.65) !important;
    }

    .passion-right .multi-img-ct .second-img img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3 / 4.2 !important;
        object-fit: cover !important;
        display: block !important;
    }
}

/* --- Contact Map Dark Mode & Hover Transition --- */
.map-iframe {
    border: 0;
    filter: invert(90%) hue-rotate(180deg) grayscale(100%);
    transition: filter 0.7s ease;
}

.group:hover .map-iframe {
    filter: invert(90%) hue-rotate(180deg) grayscale(0%);
}

/* Custom Move-in Animations (No opacity fading) */
[data-lazy-animation^=move] {
    opacity: 1 !important;
    transition-property: transform !important;
}
[data-lazy-animation^=move].on-screen {
    transform: translate3d(0, 0, 0) !important;
}
[data-lazy-animation=move-up] {
    transform: translate3d(0, 60px, 0);
}
[data-lazy-animation=move-down] {
    transform: translate3d(0, -60px, 0);
}
[data-lazy-animation=move-left] {
    transform: translate3d(60px, 0, 0);
}
[data-lazy-animation=move-right] {
    transform: translate3d(-60px, 0, 0);
}

/* ── FLOATING CTA STACK (ENQUIRY & BOOKING) ── */
.floating-cta-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

/* Floating Enquiry Button (Placed OVER/ABOVE the Booking Button) */
.mobile-floating-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 18, 24, 0.92);
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 50px;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-floating-enquiry-btn:hover {
    transform: translateY(-2px) scale(1.04);
    background: rgba(30, 30, 40, 0.98);
    border-color: rgba(216, 27, 96, 0.6);
    color: #D81B60 !important;
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.35);
}

.mobile-floating-enquiry-btn:active {
    transform: scale(0.96);
}

/* Floating Booking Button */
.mobile-floating-booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D81B60 0%, #AD1457 100%);
    color: #ffffff !important;
    padding: 12px 22px;
    border-radius: 50px;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(216, 27, 96, 0.45), 0 0 15px rgba(216, 27, 96, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-floating-booking-btn:hover {
    transform: translateY(-2px) scale(1.04);
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    box-shadow: 0 12px 30px rgba(216, 27, 96, 0.65), 0 0 20px rgba(216, 27, 96, 0.4);
    color: #ffffff !important;
}

.mobile-floating-booking-btn:active {
    transform: scale(0.96);
}

@media (max-width: 768px) {
    .floating-cta-container {
        bottom: 20px;
        left: 16px;
        gap: 8px;
    }
    .mobile-floating-enquiry-btn {
        padding: 8px 16px;
        font-size: 10px;
        letter-spacing: 0.6px;
    }
    .mobile-floating-booking-btn {
        padding: 10px 18px;
        font-size: 11px;
        letter-spacing: 0.8px;
    }
}

/* ── SCROLL TO TOP BUTTON ── */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    padding: 0;
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top-btn .btn-circle {
    position: absolute;
    width: 44px;
    height: 44px;
    border: 1.2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: border-color 0.4s ease, transform 0.4s ease;
    box-sizing: border-box;
}
.scroll-top-btn .btn-diamond {
    position: absolute;
    width: 34px;
    height: 34px;
    border: 1.2px solid rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: border-color 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}
.scroll-top-btn .btn-chevron {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.55);
    z-index: 2;
    transition: transform 0.3s ease, color 0.4s ease;
}

/* Hover states */
.scroll-top-btn:hover .btn-circle {
    border-color: rgba(255, 255, 255, 0.65);
    transform: scale(1.08);
}
.scroll-top-btn:hover .btn-diamond {
    border-color: rgba(255, 255, 255, 0.65);
    transform: rotate(135deg) scale(1.08);
}
.scroll-top-btn:hover .btn-chevron {
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    .scroll-top-btn .btn-circle {
        width: 38px;
        height: 38px;
    }
    .scroll-top-btn .btn-diamond {
        width: 29px;
        height: 29px;
    }
}

/* ============================================
   MOBILE RESPONSIVE OVERRIDES (Scoped)
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh !important;
        min-height: 600px !important;
    }
    .hero-section .elli-wrapper {
        width: 80vw !important;
        max-width: 350px !important;
        max-height: 500px !important;
        height: 62vh !important;
        margin-bottom: 0px !important;
    }
    .hero-section .text-ct {
        width: calc(100vw - 10px) !important; /* Match text container to screen width minus 10px */
        max-width: calc(100vw - 10px) !important;
        z-index: 10 !important;              /* Force title, subtitle, and divider in front of the model */
    }
    .mobile-hero-title-main {
        font-size: calc((100vw - 10px) / 5.15) !important; /* Dynamically scale to fit screen width with 5px padding on each side */
        white-space: nowrap !important;
    }
    .hero-section .elli {
        transform: translate(calc(-50% + 0.8rem), 0) scale(1.28) !important;
        transform-origin: bottom center !important;
        bottom: -14px !important;
    }
    .hero-section .elli-bg {
        display: block !important;
        position: absolute !important;
        width: 120vw !important; /* Spans 1.2x screen width */
        height: 36vh !important;  /* Height is 36vh */
        border-radius: 60vw 60vw 0 0 !important; /* Perfect rounded curve top */
        background-color: transparent !important; /* Matches desktop color/transparency */
        left: 50% !important;
        top: auto !important;     /* Override desktop top: 0; */
        bottom: -14px !important; /* Match bottom of the model */
        transform: translateX(-50%) !important; /* Center-aligned */
        z-index: 3 !important;    /* In front of plant (1), but behind model (5) */
        overflow: hidden !important;
    }
    .hero-section .elli-bg img,
    .hero-section .elli-bg picture {
        display: block !important; /* Show the background image! */
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .hero-section .pink-spotlight {
        display: block !important;
        opacity: 1 !important; /* Force visibility on mobile */
        width: 100vw !important;
        height: 100vw !important;
        background: radial-gradient(circle at bottom center, rgba(255, 75, 140, 0.7) 0%, rgba(255, 75, 140, 0) 75%) !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    .hero-section .elli {
        z-index: 5 !important;    /* Force model in front of background shape */
    }
    .hero-section .plant-ct {
        z-index: 1 !important;    /* Send the plant/leaf behind the background shape */
        width: 190vw !important;  /* Wider container width so leaves peek beautifully on both sides */
        height: 60vh !important;  /* Lifted leaf container height */
        max-height: 480px !important;
        bottom: 180px !important; /* Lifted leaf position to 180px */
        left: 45% !important;     /* Shifted slightly to the left (from 50% to 45%) */
        transform: translateX(-50%) !important;
    }
    .hero-section .plant-ct picture img {
        object-fit: contain !important; /* Use contain to keep original leaf aspect ratio */
        object-position: bottom center !important;
    }
}

@media (max-width: 480px) {
    .hero-section .mobile-hero-title {
        white-space: normal !important;
        font-size: clamp(2rem, 9vw, 3rem) !important;
    }
}

/* Typographic Divider for mobile subtitle */
.subtitle-divider-ct {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 14px !important;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 1.1s;
}
.hero-section.loaded .subtitle-divider-ct {
    opacity: 1;
    transform: translateY(0);
}

.subtitle-divider {
    width: 275px; /* Increased length to 275px */
    height: auto;
}

/* Line reveal drawing animation: Outward from center to left/right */
.divider-line {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    transition: stroke-dashoffset 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 1.3s;
}
.hero-section.loaded .divider-line {
    stroke-dashoffset: 0;
}

/* Dots and center diamonds scale up animation */
.divider-dot,
.divider-wing,
.divider-diamond {
    transform: scale(0);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 1.2s ease;
}

/* Individual transform origins for correct scaling from center point */
.divider-dot.left { transform-origin: 70px 12px; transition-delay: 1.5s; }
.divider-dot.right { transform-origin: 250px 12px; transition-delay: 1.5s; }
.divider-wing.left { transform-origin: 142px 12px; transition-delay: 1.7s; }
.divider-wing.right { transform-origin: 178px 12px; transition-delay: 1.7s; }
.divider-diamond.top { transform-origin: 160px 7px; transition-delay: 1.9s; }
.divider-diamond.bottom { transform-origin: 160px 17px; transition-delay: 1.9s; }
.divider-diamond.left { transform-origin: 154px 12px; transition-delay: 1.9s; }
.divider-diamond.right { transform-origin: 166px 12px; transition-delay: 1.9s; }

.hero-section.loaded .divider-dot,
.hero-section.loaded .divider-wing,
.hero-section.loaded .divider-diamond {
    transform: scale(1);
    opacity: 1;
}

/* Custom horizontal scrolling track for services grid on mobile/tablet */
@media (max-width: 768px) {
    .services-grid-main {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        gap: 20px !important;
        padding: 10px 24px 30px 24px !important; /* Spacing for shadow breathing room */
        margin-left: -2.5rem !important; /* Bleed to screen edges, matches index.html container padding */
        margin-right: -2.5rem !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Hide scrollbar for a clean, premium mobile look */
    .services-grid-main::-webkit-scrollbar {
        display: none !important;
    }
    
    /* Card sizing so the next card peeks slightly from the right */
    .services-grid-main > div {
        flex: 0 0 280px !important;
        max-width: 75vw !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
        width: auto !important;
    }
    
    /* Disable the vertical zigzag alignment */
    .services-grid-main > div:nth-child(even) {
        margin-top: 0 !important;
    }
    
    /* Clean, legible typography on mobile cards */
    .services-grid-main h3 {
        font-size: 16px !important;
        letter-spacing: 0.15em !important;
        margin-top: 4px !important;
    }
}

/* Bleed reviews container to edge of the viewport to prevent card clipping at page margins */
#reviews-container {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

/* Shift about page hero video to the left on mobile viewports */
@media (max-width: 900px) {
    .about-hero-video {
        transform: scale(1.25) translateX(-8%) !important;
    }
}

/* File/Image Upload Common Styles */
.file-upload-ct {
    position: relative;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    transition: border-color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.file-upload-ct:hover {
    border-color: var(--brand-pink);
    background: rgba(255, 255, 255, 0.02);
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.file-upload-text {
    font-size: 11px;
    color: var(--bone);
    opacity: 0.7;
    pointer-events: none;
}

.file-upload-icon {
    font-size: 22px;
    color: var(--brand-pink);
    pointer-events: none;
}

.file-name-display {
    font-size: 11px;
    color: var(--brand-pink);
    margin-top: 5px;
    display: block;
    text-align: center;
}

/* ===== LEGAL MODAL OVERLAYS ===== */
.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.legal-modal-card {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 90%;
    max-width: 650px;
    max-height: 80vh;
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #fff;
    box-sizing: border-box;
}

.legal-modal-overlay.active .legal-modal-card {
    transform: translateY(0) scale(1);
}

.legal-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.legal-modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.legal-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.legal-modal-header h2 {
    font-family: var(--font-display, 'Bodoni Moda', serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.legal-modal-body {
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 10px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

.legal-modal-body::-webkit-scrollbar {
    width: 6px;
}

.legal-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.legal-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.legal-modal-body h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-modal-body p {
    margin-bottom: 15px;
}

.legal-modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
    list-style-type: disc;
}

.legal-modal-body li {
    margin-bottom: 8px;
}

.legal-modal-body a {
    color: var(--brand-pink, #d81b60);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-modal-body a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Modern CSS Performance Optimization: offscreen rendering skipping */
.lazy-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

