/* Global Root & Reset */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    /* Ensure no horizontal scroll */
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

body,
body * {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

:root {
    --neon-cyan: #12d1ff;
    --neon-pink: #ff00ff;
    --neon-yellow: #fffa00;
    --neon-green: #00ffbf;
    --neon-orange: #ff8c00;
    --dark: #050505;
}

::selection {
    background: var(--neon-cyan);
    color: var(--dark);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* Animations */
@media (max-width: 768px) {
    .header-logo-wrap {
        display: none !important;
    }
}

#headerLogo {
    transition: filter 0.5s ease;
}

#mainHeader.scrolled #headerLogo,
.logo-white-filter {
    filter: brightness(0) invert(1);
}

@keyframes expand {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes title-up-sme {
    0% {
        transform: translateY(110%);
        opacity: 0;
    }

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

@keyframes person-pop {
    0% {
        transform: translate(-50%, 50px) scale(0.9);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, 0) scale(1);
        opacity: 1;
    }
}

@keyframes star-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10px, -20px);
    }
}

@keyframes star-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes star-rotate-rev {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes line-scroll {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes title-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes float-bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes ping-slow {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes neon-image-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        filter: grayscale(0%) brightness(1);
        opacity: 1;
    }
    19%, 21%, 23%, 24%, 54%, 56% {
        filter: grayscale(60%) brightness(0.5) contrast(1.5);
        opacity: 0.6;
    }
}

/* Poyoyon Animation */
@keyframes poyoyon3 {

    0%,
    40% {
        transform: skew(0deg, 0deg);
    }

    5% {
        transform: skew(5deg, 5deg);
    }

    10% {
        transform: skew(-4deg, -4deg);
    }

    15% {
        transform: skew(3deg, 3deg);
    }

    20% {
        transform: skew(-2deg, -2deg);
    }

    25% {
        transform: skew(1deg, 1deg);
    }

    30% {
        transform: skew(-0.6deg, -0.6deg);
    }

    35% {
        transform: skew(0.3deg, 0.3deg);
    }
}

.animate-poyoyon {
    animation: poyoyon3 2.5s infinite;
}

.animate-expand {
    animation: expand 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

.animate-title-up {
    animation: title-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    animation: fade-in 1.5s ease forwards;
}

.marquee-text {
    animation: marquee-h 40s linear infinite;
}

.character-float {
    animation: float-bob 4s ease-in-out infinite;
}

.animate-ping-slow {
    animation: ping-slow 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-title-up-sme {
    animation: title-up-sme 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-person-pop {
    animation: person-pop 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-star-float {
    animation: star-float 6s ease-in-out infinite;
}

.animate-star-float-slow {
    animation: star-float 10s ease-in-out infinite;
}

.animate-star-rotate {
    animation: star-rotate 15s linear infinite;
}

.animate-star-rotate-rev {
    animation: star-rotate-rev 12s linear infinite;
}

.animate-line-scroll {
    animation: line-scroll 2s ease-in-out infinite;
}

.animate-person-float-l {
    animation: star-float 8s ease-in-out infinite;
}

.animate-person-float-r {
    animation: star-float 7s ease-in-out infinite reverse;
}

.animate-person-float-fast {
    animation: star-float 4s ease-in-out infinite;
}

.neon-image-flicker {
    animation: neon-image-flicker 8s infinite;
}

.group:hover .neon-image-flicker {
    animation: none !important;
}

/* Grid Patterns & Utilities */
.bg-grid-white {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 50px 50px;
}

.border-text {
    -webkit-text-stroke: 2px white;
}

.border-text-white {
    -webkit-text-stroke: 1.5px white;
    color: transparent;
}

/* Kaiyukan Inspired Button (Adapted for SME Style) */
.kaiyukan-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.kaiyukan-btn .btn-text span {
    transition: all 0.5s ease;
}

/* Section Reveal Effect */
.section-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Text Reveal Animation inside Section Reveal */
.reveal-text {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

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

.delay-100 {
    transition-delay: 0.1s;
}

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

.delay-300 {
    transition-delay: 0.3s;
}

/* Vertical Text */
.vertical-text {
    writing-mode: vertical-rl;
}

/* Grain/Noise Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.12;
    pointer-events: none;
    z-index: 9999;
}

/* Swiper Nav Custom */
.gallery-nav button {
    font-family: serif;
    font-weight: 900;
}

/* FAQ Accordion Styling */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active {
    border-bottom-color: #B2492C !important;
}

.faq-item.active button span:first-child {
    color: #B2492C;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Voice Swiper Pagination Custom */
#voice .swiper-pagination-bullet {
    background: #3F884B;
    opacity: 0.3;
}

#voice .swiper-pagination-bullet-active {
    background: #3F884B;
    opacity: 1;
}

/* Force Luminous Lightbox to center */
.lum-lightbox {
    z-index: 10000 !important;
}

.lum-lightbox-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.lum-lightbox-image-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
}

.lum-img {
    max-width: 95vw !important;
    max-height: 95vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    margin: auto !important;
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: inherit;
    mix-blend-mode: hard-light;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00ffbf;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 3.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    10% {
        clip: rect(90px, 9999px, 160px, 0);
    }

    20% {
        clip: rect(0, 0, 0, 0);
    }

    25% {
        clip: rect(0, 0, 0, 0);
    }

    30% {
        clip: rect(30px, 9999px, 100px, 0);
    }

    40% {
        clip: rect(120px, 9999px, 180px, 0);
    }

    50% {
        clip: rect(50px, 9999px, 130px, 0);
    }

    60% {
        clip: rect(0, 0, 0, 0);
    }

    65% {
        clip: rect(0, 0, 0, 0);
    }

    70% {
        clip: rect(140px, 9999px, 220px, 0);
    }

    80% {
        clip: rect(40px, 9999px, 100px, 0);
    }

    90% {
        clip: rect(80px, 9999px, 150px, 0);
    }

    100% {
        clip: rect(10px, 9999px, 60px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(120px, 9999px, 200px, 0);
    }

    5% {
        clip: rect(10px, 9999px, 90px, 0);
    }

    10% {
        clip: rect(0, 0, 0, 0);
    }

    35% {
        clip: rect(0, 0, 0, 0);
    }

    36% {
        clip: rect(150px, 9999px, 190px, 0);
    }

    40% {
        clip: rect(40px, 9999px, 110px, 0);
    }

    45% {
        clip: rect(0, 0, 0, 0);
    }

    70% {
        clip: rect(0, 0, 0, 0);
    }

    71% {
        clip: rect(100px, 9999px, 140px, 0);
    }

    80% {
        clip: rect(60px, 9999px, 130px, 0);
    }

    100% {
        clip: rect(100px, 9999px, 190px, 0);
    }
}

/* Italiana Font */
.font-italiana {
    font-family: "Italiana", serif;
}

.scene-text {
    color: #B2492C;
}

#scene-gallery img {
    display: block;
    max-width: 100%;
    height: auto;
}

.bg-about-atmosphere {
    background-image: url("../img/concept_01.jpg");
    background-attachment: fixed;
}

.bg-service-fixed {
    background-image: url("../img/service_01.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.bg-service-02-fixed {
    background-image: url("../img/service_02.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.bg-service-03-fixed {
    background-image: url("../img/service_03.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

/* Service Scrollytelling Custom */
.service-image {
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.grayscale-sm {
    filter: grayscale(40%);
}

/* FV Section - 2 Column Layout */
.fv-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: #B2492C;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px 0;
}

.fv-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 450px 1fr;
    gap: 40px;
    align-items: center;
    height: 100%;
}

/* Left Column - Spacious with breathing room */
.fv-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}

.fv-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.fv-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}


.fv-left-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    text-align: center;
    /* Center text */
}

.fv-catch-arch,
.fv-sub,
.fv-logo,
.fv-read-more {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fv-catch-arch.is-active,
.fv-sub.is-active,
.fv-logo.is-active {
    opacity: 1;
    --opacity: 1;
    --translate-y: 0;
}

.char {
    display: inline-block;
    opacity: var(--opacity, 0);
    transform: translateY(var(--translate-y, 15px));
    transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1),
        transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: calc(0.04s * var(--char-index));
    white-space: pre;
}

.fv-catch-arch {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    /* Refined size */
    color: #DBDF77;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    height: 90px;
    /* Slightly tighter height */
    width: 100%;
    overflow: visible;
}

.char-arch {
    position: absolute;
    left: 50%;
    bottom: calc(var(--radius, 450px) * -1);
    /* Dynamic pivot point based on JS radius */
    transform-origin: center center;
    transform: translate(-50%, 0) rotate(var(--angle)) translateY(calc(var(--radius) * -1)) scaleX(1.2);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: calc(0.05s * var(--char-index));
    letter-spacing: clamp(2px, 1.5vw, 8px);
    /* Responsive spacing */
    white-space: pre;
    animation: neonFlicker 13s infinite;
    animation-delay: var(--random-delay);
}

.fv-catch-arch.is-active .char-arch {
    opacity: 1;
}

/* Sub Column - OSAKE TO NIWAKAYA */
.fv-sub {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    letter-spacing: 0.45em;
    color: #3F884B;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
}

.fv-sub .char {
    display: inline-block;
    animation: neonFlickerGreen 8s infinite;
    animation-delay: var(--random-delay);
}

/* Brightened Green Neon Flicker */
@keyframes neonFlickerGreen {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        opacity: 1;
        color: #3F884B;
        text-shadow: none;
    }

    19% {
        opacity: 0.9;
        color: #55FF55;
        text-shadow: 0 0 10px #00FF41, 0 0 20px #00FF41;
    }

    20% {
        opacity: 1;
        color: #AAFFAA;
        text-shadow: 0 0 15px #00FF41, 0 0 35px #00FF41, 0 0 50px #00FF41;
    }

    21% {
        opacity: 0.8;
        color: #3F884B;
        text-shadow: none;
    }

    23% {
        opacity: 1;
        color: #55FF55;
        text-shadow: 0 0 10px #00FF41, 0 0 25px #00FF41;
    }

    54% {
        opacity: 1;
        color: #AAFFAA;
        text-shadow: 0 0 15px #00FF41, 0 0 40px #00FF41, 0 0 65px #00FF41;
    }

    56% {
        opacity: 0.9;
        color: #3F884B;
        text-shadow: none;
    }
}

/* Original Yellow/Greenish Neon Flicker for GOOD VIBES ONLY */
@keyframes neonFlicker {

    0%,
    96%,
    100% {
        opacity: 1;
        text-shadow: none;
    }

    97% {
        opacity: 0.8;
        text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
    }

    98% {
        opacity: 1;
        text-shadow: 0 0 15px currentColor, 0 0 35px currentColor, 0 0 50px currentColor;
    }

    99% {
        opacity: 0.9;
        text-shadow: none;
    }
}

.fv-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    /* Ensure no neon animation on logo */
    animation: none;
}

.fv-logo.is-active {
    opacity: 1;
    transform: translateY(0);
}

.fv-logo img {
    height: clamp(80px, 15vw, 150px);
    width: auto;
    object-fit: contain;
    /* Apply neon animation to the logo image */
    animation: neonFlickerLogo 11s infinite;
    animation-delay: 3s;
}

/* Logo specific neon animation using drop-shadow */
@keyframes neonFlickerLogo {

    0%,
    94%,
    100% {
        filter: drop-shadow(0 0 0 transparent) brightness(1);
    }

    95% {
        filter: drop-shadow(0 0 8px #DBDF77) brightness(1.1);
    }

    97% {
        filter: drop-shadow(0 0 15px #DBDF77) drop-shadow(0 0 30px #DBDF77);
    }

    98% {
        filter: drop-shadow(0 0 5px #DBDF77);
    }
}

.fv-read-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.fv-read-more.is-visible {
    opacity: 1;
}

.fv-read-more-line {
    width: 1px;
    height: 0;
    background-color: #DBDF77;
}

.fv-read-more-line.animate {
    animation: lineGrow 1.2s ease-out forwards;
}

@keyframes lineGrow {
    from {
        height: 0;
    }

    to {
        height: 50px;
    }
}

.fv-read-more-text {
    font-family: 'Italiana', serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: #DBDF77;
    text-transform: lowercase;
}


/* Right Column - Image Grid */

.fv-image-grid {
    display: grid;
    gap: 15px;
    width: 100%;
}

.fv-grid-left {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 180px;
    max-width: 500px;
}

.fv-grid-right {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 220px;
    max-width: 500px;
}

.fv-grid-item {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fv-grid-item.show {
    opacity: 1;
    transform: translateY(0);
}

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

/* Uneven Layout - Left */
.fv-grid-4 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.fv-grid-5 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

/* Taller */
.fv-grid-6 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* Uneven Layout - Right */
.fv-grid-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* Taller */
.fv-grid-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.fv-grid-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

@media (min-width: 1025px) {
    .fv-left {
        /* Shift left side down */
        transform: translateY(60px);
    }

    .fv-right {
        /* Shift right side up by the same amount */
        transform: translateY(-60px);
    }
}

@media (max-width: 1024px) {
    .fv-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
        height: auto;
        min-height: 100%;
    }

    .fv-grid-left,
    .fv-grid-right {
        grid-template-rows: 120px 100px;
    }

    .fv-section {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }

    .fv-center {
        order: 2;
    }

    .fv-left {
        order: 1;
    }

    .fv-right {
        order: 3;
    }

    .fv-left {
        min-height: auto;
        justify-content: center;
        padding: 0;
        margin: 0;
        width: 100%;
        order: 1;
    }

    .fv-catch-arch {
        height: 45px !important;
        margin-bottom: 0.5rem !important;
    }

    .fv-left-content {
        max-width: 100%;
        text-align: center;
    }

    .fv-logo {
        margin-bottom: 0.5rem;
    }

    .fv-logo img {
        height: 100px;
    }

    .fv-read-more {
        align-items: center;
        margin: 0 auto;
    }

    .fv-right {
        min-height: auto;
        justify-content: center;
        padding: 0;
        margin: 0;
        width: 100%;
        order: 3;
    }

    .fv-image-grid {
        min-height: auto;
        max-width: 320px; /* Adjusting to a size closer to the bottom grid's balanced look */
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .fv-grid-left,
    .fv-grid-right {
        /* Ensuring they don't force full width if content is smaller */
        display: grid;
    }
}

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

    .fv-container {
        padding: 0 20px;
        gap: 30px;
    }

    .fv-left {
        padding: 0;
    }

    .fv-logo {
        margin-bottom: 1.5rem;
    }

    .fv-logo img {
        height: 80px;
    }

    @keyframes lineGrowMobile {
        from {
            height: 0;
        }

        to {
            height: 50px;
        }
    }

    .fv-read-more-line.animate {
        animation: lineGrowMobile 1.2s ease-out forwards;
    }

    .fv-read-more-text {
        font-size: 0.8rem;
    }

    .fv-right {
        min-height: auto;
    }

    .fv-image-grid {
        min-height: auto;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .fv-logo {
        margin-bottom: 1.5rem;
    }

    .fv-logo img {
        height: 70px;
    }

    .fv-right {
        min-height: auto;
    }

    .fv-image-grid {
        min-height: auto;
        gap: 6px;
    }

    .fv-catch-arch {
        font-size: 1.3rem;
        height: 60px;
    }

    .char-arch {
        letter-spacing: 2px;
    }
}

/* SP Specific Adjustments */
@media (max-width: 768px) {
    /* Scene Gallery Adjustments */
    #scene-gallery .container > div:first-child .w-full {
        width: 100% !important;
    }
    #scene-gallery .container > div:nth-child(2) {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    #scene-gallery .order-2 {
        width: 33.333% !important;
        order: 2 !important;
        margin-bottom: 2rem;
        margin-left: auto;
        margin-right: 0;
    }
    #scene-gallery .order-3 {
        width: 100% !important;
        order: 3 !important;
    }
    #scene-gallery .scene-text {
        text-align: left !important;
    }

    /* Service Section Mobile Fix */
    #service {
        height: 300vh !important;
    }
    #service .sticky {
        position: sticky !important;
        top: 0 !important;
        height: 100vh !important;
        height: 100dvh !important;
    }
    
    .service-content-inner span {
        font-size: 4rem !important;
        margin-bottom: 0.5rem !important;
    }
    .service-content-inner h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    .service-content-inner p {
        font-size: 0.9rem !important;
    }

    /* Access Section Mobile Tel link */
    .access-tel-link {
        font-size: 1.5rem !important;
    }
}

.font-medium-desc {
    font-weight: 500 !important;
}

.fv-section img {
    border-radius: 0 !important;
}

/* Hamburger Button Custom */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
    position: relative;
    padding: 0;
}

.hamburger-btn span {
    display: block;
    position: absolute;
    left: 8px; /* (44 - 28) / 2 */
    width: 28px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger-btn span:nth-child(1) { top: 14px; }
.hamburger-btn span:nth-child(2) { top: 21px; }
.hamburger-btn span:nth-child(3) { top: 28px; }

.hamburger-btn.is-active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}
.hamburger-btn.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.is-active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}
