        :root {
            --black: #000000;
            --rich-black: #0a0a0a;
            --dark: #111111;
            --charcoal: #1a1a1a;
            --gray-dark: #333;
            --gray: #666;
            --gray-light: #999;
            --silver: #ccc;
            --off-white: #f0f0f0;
            --white: #ffffff;

            --accent-primary: #ff3c00;
            --accent-secondary: #00ff94;
            --accent-tertiary: #5d3dff;

            --font-display: 'Bodoni Moda', serif;
            --font-heading: 'Syne', sans-serif;
            --font-mono: 'Space Mono', monospace;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-heading);
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            cursor: none;
        }

        ::selection {
            background: var(--accent-primary);
            color: var(--black);
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            cursor: none;
        }

        button {
            cursor: none;
            border: none;
            background: none;
            font-family: inherit;
        }

        /* ==================== CUSTOM CURSOR ==================== */
        .cursor-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 99999;
        }

        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 2px solid var(--accent-primary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
            mix-blend-mode: difference;
        }

        .cursor-follower {
            position: fixed;
            width: 80px;
            height: 80px;
            border: 1px solid rgba(255, 60, 0, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.3s;
            opacity: 0.5;
        }

        .cursor-text {
            position: fixed;
            transform: translate(-50%, -50%);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0;
            transition: opacity 0.3s;
            color: var(--white);
        }

        .cursor.hover {
            width: 60px;
            height: 60px;
            background: rgba(255, 60, 0, 0.1);
        }

        .cursor.hover+.cursor-follower {
            width: 120px;
            height: 120px;
        }

        .cursor.text-mode+.cursor-follower+.cursor-text {
            opacity: 1;
        }

        /* ==================== LOADER ==================== */
        .loader {
            position: fixed;
            inset: 0;
            background: var(--black);
            z-index: 100000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 40px;
        }

        .loader-logo {
            font-family: var(--font-display);
            font-size: clamp(4rem, 15vw, 12rem);
            font-weight: 400;
            letter-spacing: 0.2em;
            overflow: hidden;
        }

        .loader-logo .char {
            display: inline-block;
            transform: translateY(100%);
            animation: loaderChar 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
        }

        @keyframes loaderChar {
            to {
                transform: translateY(0);
            }
        }

        .loader-progress {
            width: 300px;
            height: 1px;
            background: var(--charcoal);
            position: relative;
            overflow: hidden;
        }

        .loader-progress-bar {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            animation: loaderProgress 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
        }

        @keyframes loaderProgress {
            0% {
                width: 0;
            }

            100% {
                width: 100%;
            }
        }

        .loader-percent {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            letter-spacing: 0.2em;
        }

        .loader.complete {
            animation: loaderExit 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
            animation-delay: 0.5s;
        }

        /* Hide loader if already visited */
        html.loaded .loader {
            display: none !important;
            animation: none !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }

        @keyframes loaderExit {
            0% {
                clip-path: inset(0 0 0 0);
            }

            100% {
                clip-path: inset(0 0 100% 0);
            }
        }

        /* ==================== NOISE OVERLAY ==================== */
        .noise {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        /* ==================== HEADER ==================== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 30px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            mix-blend-mode: difference;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 400;
            letter-spacing: 0.3em;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .header-location {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent-primary);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .header-time {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            letter-spacing: 0.1em;
        }

        .menu-toggle {
            position: relative;
            width: 60px;
            height: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 8px;
        }

        .menu-toggle span {
            display: block;
            height: 1px;
            background: var(--white);
            transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .menu-toggle span:nth-child(1) {
            width: 100%;
        }

        .menu-toggle span:nth-child(2) {
            width: 60%;
            margin-left: auto;
        }

        .menu-toggle:hover span:nth-child(1) {
            width: 60%;
        }

        .menu-toggle:hover span:nth-child(2) {
            width: 100%;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: translateY(4.5px) rotate(45deg);
            width: 100%;
        }

        .menu-toggle.active span:nth-child(2) {
            transform: translateY(-4.5px) rotate(-45deg);
            width: 100%;
        }

        /* ==================== NAVIGATION OVERLAY ==================== */
        .nav-overlay {
            position: fixed;
            inset: 0;
            z-index: 999;
            display: flex;
            pointer-events: none;
            opacity: 0;
        }

        .nav-overlay.active {
            pointer-events: auto;
            opacity: 1;
        }

        .nav-panel {
            flex: 1;
            background: var(--rich-black);
            transform: translateY(-100%);
            transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .nav-overlay.active .nav-panel {
            transform: translateY(0);
        }

        .nav-panel:nth-child(1) {
            transition-delay: 0s;
        }

        .nav-panel:nth-child(2) {
            transition-delay: 0.1s;
        }

        .nav-panel:nth-child(3) {
            transition-delay: 0.2s;
        }

        .nav-panel:nth-child(4) {
            transition-delay: 0.3s;
        }

        .nav-content {
            position: absolute;
            inset: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding: 150px 80px 80px;
            opacity: 0;
            transition: opacity 0.5s ease 0.5s;
        }

        .nav-overlay.active .nav-content {
            opacity: 1;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
        }

        .nav-menu li {
            overflow: hidden;
        }

        .nav-menu a {
            display: flex;
            align-items: baseline;
            gap: 20px;
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            line-height: 1.2;
            transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
            transform: translateY(100%);
        }

        .nav-overlay.active .nav-menu a {
            transform: translateY(0);
            transition-delay: 0.6s;
        }

        .nav-menu li:nth-child(2) a {
            transition-delay: 0.65s;
        }

        .nav-menu li:nth-child(3) a {
            transition-delay: 0.7s;
        }

        .nav-menu li:nth-child(4) a {
            transition-delay: 0.75s;
        }

        .nav-menu li:nth-child(5) a {
            transition-delay: 0.8s;
        }

        .nav-menu li:nth-child(6) a {
            transition-delay: 0.85s;
        }

        .nav-menu a .num {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--accent-primary);
        }

        .nav-menu a:hover {
            color: var(--accent-primary);
            transform: translateX(30px);
        }

        .nav-info {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding-bottom: 50px;
            gap: 50px;
        }

        .nav-info-block h4 {
            font-family: var(--font-mono);
            font-size: 0.65rem;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent-secondary);
            margin-bottom: 15px;
        }

        .nav-info-block p {
            font-size: 0.9rem;
            line-height: 2;
            color: var(--gray-light);
        }

        /* ==================== HERO ==================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
        }

        .hero-bg-image {
            position: absolute;
            inset: -50px;
            background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=80') center/cover;
            filter: brightness(0.3) saturate(0.8);
            animation: heroBgMove 20s ease-in-out infinite alternate;
        }

        @keyframes heroBgMove {
            0% {
                transform: scale(1.1) translate(0, 0);
            }

            100% {
                transform: scale(1.15) translate(-20px, -10px);
            }
        }

        .hero-gradient {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 20% 80%, rgba(255, 60, 0, 0.15), transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(93, 61, 255, 0.1), transparent 50%),
                linear-gradient(to bottom, transparent 50%, var(--black));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 0 80px;
        }

        .hero-eyebrow {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .hero-eyebrow-line {
            width: 80px;
            height: 1px;
            background: var(--accent-primary);
            transform-origin: left;
            animation: lineGrow 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
            animation-delay: 2.5s;
            transform: scaleX(0);
        }

        @keyframes lineGrow {
            to {
                transform: scaleX(1);
            }
        }

        .hero-eyebrow-text {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent-primary);
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
            animation-delay: 2.7s;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(4rem, 12vw, 14rem);
            font-weight: 400;
            line-height: 0.9;
            letter-spacing: -0.02em;
            margin-bottom: 60px;
        }

        .hero-title .line {
            display: block;
            overflow: hidden;
            position: relative;
        }

        .hero-title .line-inner {
            display: block;
            transform: translateY(105%);
            animation: titleReveal 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
        }

        .hero-title .line:nth-child(1) .line-inner {
            animation-delay: 2.6s;
        }

        .hero-title .line:nth-child(2) .line-inner {
            animation-delay: 2.75s;
        }

        .hero-title .line:nth-child(3) .line-inner {
            animation-delay: 2.9s;
        }

        @keyframes titleReveal {
            to {
                transform: translateY(0);
            }
        }

        .hero-title .outline {
            -webkit-text-stroke: 1px var(--white);
            color: transparent;
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .hero-description {
            max-width: 400px;
            font-size: 0.9rem;
            line-height: 2.2;
            color: var(--gray-light);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards;
            animation-delay: 3.2s;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
            }
        }

        .hero-cta {
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
            animation-delay: 3.4s;
        }

        .magnetic-btn {
            position: relative;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--gray-dark);
            transition: border-color 0.3s;
        }

        .magnetic-btn:hover {
            border-color: var(--accent-primary);
        }

        .magnetic-btn-inner {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .magnetic-btn-text {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .magnetic-btn-arrow {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .magnetic-btn:hover .magnetic-btn-arrow {
            transform: translateY(5px);
        }

        .magnetic-btn svg {
            position: absolute;
            width: 100%;
            height: 100%;
            animation: rotateSlow 20s linear infinite;
        }

        @keyframes rotateSlow {
            to {
                transform: rotate(360deg);
            }
        }

        .magnetic-btn textPath {
            font-family: var(--font-mono);
            font-size: 0.6rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            fill: var(--gray);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 50px;
            left: 80px;
            display: flex;
            align-items: center;
            gap: 20px;
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
            animation-delay: 3.5s;
        }

        .scroll-indicator-text {
            font-family: var(--font-mono);
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            writing-mode: vertical-rl;
            color: var(--gray);
        }

        .scroll-indicator-line {
            width: 1px;
            height: 100px;
            background: var(--charcoal);
            position: relative;
            overflow: hidden;
        }

        .scroll-indicator-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: linear-gradient(to bottom, var(--accent-primary), transparent);
            animation: scrollLine 2s ease-in-out infinite;
        }

        @keyframes scrollLine {
            0% {
                top: -30%;
            }

            100% {
                top: 100%;
            }
        }

        /* ==================== MARQUEE ==================== */
        .marquee-section {
            padding: 25px 0;
            background: var(--accent-primary);
            overflow: hidden;
            position: relative;
        }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: marquee 30s linear infinite;
        }

        .marquee-section:hover .marquee-track {
            animation-play-state: paused;
        }

        .marquee-item {
            padding: 0 40px;
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 400;
            letter-spacing: 0.1em;
            color: var(--black);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .marquee-item::after {
            content: '✦';
            font-size: 0.8rem;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ==================== SECTION COMMONS ==================== */
        section {
            position: relative;
        }

        .section-padding {
            padding: clamp(100px, 15vh, 180px) 80px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            font-family: var(--font-mono);
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent-secondary);
            margin-bottom: 30px;
        }

        .section-label::before {
            content: '';
            display: block;
            width: 40px;
            height: 1px;
            background: var(--accent-secondary);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 10vw, 8rem);
            font-weight: 400;
            line-height: 0.9;
            margin-bottom: 80px;
            text-transform: uppercase;
        }

        .section-title .word {
            display: inline-block;
            overflow: hidden;
        }

        .section-title .word-inner {
            display: inline-block;
            transform: translateY(105%);
            transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .section-title.in-view .word-inner {
            transform: translateY(0);
        }

        /* ==================== CONCEPT ==================== */
        .concept-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .concept-text p {
            font-size: 1.1rem;
            line-height: 2.2;
            color: var(--silver);
            margin-bottom: 40px;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-link {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border-bottom: 1px solid var(--white);
            padding-bottom: 5px;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-link:hover {
            color: var(--accent-primary);
            border-color: var(--accent-primary);
        }

        .concept-visual {
            position: relative;
            height: 80vh;
            border-radius: 200px 0 200px 0;
            overflow: hidden;
        }

        .concept-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.5s ease;
        }

        .concept-visual:hover img {
            transform: scale(1.1);
        }

        /* ==================== SERVICES ==================== */
        .service-list {
            border-top: 1px solid var(--gray-dark);
        }

        .service-item {
            display: grid;
            grid-template-columns: 100px 1fr 200px 150px;
            align-items: center;
            padding: 50px 0;
            border-bottom: 1px solid var(--gray-dark);
            transition: all 0.4s;
            cursor: pointer;
        }

        .service-item:hover {
            background: rgba(255, 255, 255, 0.05);
            padding-left: 20px;
        }

        .service-num {
            font-family: var(--font-mono);
            font-size: 0.9rem;
            color: var(--gray);
        }

        .service-name {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 400;
        }

        .service-desc {
            font-size: 0.85rem;
            color: var(--gray-light);
        }

        .service-price {
            font-family: var(--font-mono);
            text-align: right;
            font-size: 1.1rem;
        }

        .service-image-preview {
            position: fixed;
            width: 300px;
            height: 400px;
            pointer-events: none;
            z-index: 999;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            overflow: hidden;
        }

        .service-image-preview.active {
            opacity: 1;
            transform: scale(1);
        }

        .service-image-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ==================== STYLISTS ==================== */
        .stylists-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 100px;
        }

        .stylists-desc {
            font-size: 1.1rem;
            line-height: 2;
            color: var(--silver);
        }

        .stylists-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stylist-card {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            cursor: pointer;
        }

        .stylist-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .stylist-card:hover .stylist-image {
            transform: scale(1.1);
        }

        .stylist-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stylist-card:hover .stylist-overlay {
            opacity: 1;
        }

        .stylist-name {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .stylist-role {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--accent-secondary);
        }

        /* ==================== GALLERY ==================== */
        .gallery {
            overflow: hidden;
        }

        .gallery-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding: 0 80px 50px;
        }

        .gallery-nav {
            display: flex;
            gap: 20px;
        }

        .gallery-nav-btn {
            width: 50px;
            height: 50px;
            border: 1px solid var(--gray-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: var(--white);
        }

        .gallery-nav-btn:hover {
            background: var(--white);
            color: var(--black);
        }

        .gallery-slider {
            display: flex;
            gap: 30px;
            padding: 0 80px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 50px;
        }

        .gallery-slider::-webkit-scrollbar {
            height: 2px;
            background: var(--charcoal);
        }

        .gallery-slider::-webkit-scrollbar-thumb {
            background: var(--accent-primary);
        }

        .gallery-slide {
            min-width: 400px;
            aspect-ratio: 3/4;
            position: relative;
            overflow: hidden;
        }

        .gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-slide:hover img {
            transform: scale(1.1);
        }

        /* ==================== NEWS ==================== */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            border-top: 1px solid var(--gray-dark);
            padding-top: 60px;
        }

        .news-card {
            display: block;
            position: relative;
            padding: 30px;
            background: var(--charcoal);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .news-card:hover {
            background: var(--accent-primary);
            transform: translateY(-10px);
        }

        .news-card:hover .news-title,
        .news-card:hover .news-date,
        .news-card:hover .news-tag {
            color: var(--black);
        }

        .news-card:hover .news-tag {
            border-color: var(--black);
        }

        .news-date {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--gray-light);
            margin-bottom: 20px;
        }

        .news-title {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            min-height: 3.2em;
        }

        .news-tag {
            display: inline-block;
            font-family: var(--font-mono);
            font-size: 0.7rem;
            padding: 5px 15px;
            border: 1px solid var(--gray);
            border-radius: 50px;
            color: var(--silver);
        }

        /* ==================== ACCESS ==================== */
        .access-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .access-map {
            height: 100%;
            min-height: 600px;
            filter: grayscale(1) invert(1) contrast(1.2);
        }

        .access-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .access-content {
            padding: 100px 80px;
            background: var(--rich-black);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .access-name {
            font-family: var(--font-display);
            font-size: 3rem;
            margin-bottom: 60px;
        }

        .access-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .access-item-label {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--accent-secondary);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .access-item-value {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--silver);
        }

        /* ==================== RESERVE ==================== */
        .reserve {
            background: var(--white);
            color: var(--black);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .reserve-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: var(--font-display);
            font-size: 20vw;
            color: rgba(0, 0, 0, 0.03);
            white-space: nowrap;
            pointer-events: none;
        }

        .reserve-content {
            position: relative;
            z-index: 2;
        }

        .reserve .section-label {
            color: var(--accent-primary);
        }

        .reserve .section-label::before {
            background: var(--accent-primary);
        }

        .reserve-title {
            font-size: clamp(3rem, 8vw, 6rem);
            margin-bottom: 30px;
        }

        .reserve-desc {
            font-size: 1.1rem;
            margin-bottom: 60px;
            color: var(--gray-dark);
        }

        .reserve-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 80px;
        }

        .reserve-btn {
            padding: 25px 60px;
            font-family: var(--font-heading);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .reserve-btn.primary {
            background: var(--black);
            color: var(--white);
        }

        .reserve-btn.primary:hover {
            background: var(--white);
            color: var(--black);
        }

        .reserve-btn.secondary {
            border: 2px solid var(--black);
            background: transparent;
        }

        .reserve-btn.secondary:hover {
            background: var(--black);
            color: var(--accent-primary);
        }

        .reserve-tel {
            padding-top: 60px;
            border-top: 1px solid rgba(0, 0, 0, 0.2);
        }

        .reserve-tel-number {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.5rem);
            letter-spacing: 0.1em;
            margin-bottom: 10px;
        }

        .reserve-tel-hours {
            font-size: 0.85rem;
        }

        /* ==================== FOOTER ==================== */
        footer {
            background: var(--black);
            padding: 100px 80px 50px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 80px;
            padding-bottom: 80px;
            border-bottom: 1px solid var(--charcoal);
        }

        .footer-brand .logo {
            font-size: 2rem;
            margin-bottom: 30px;
            display: inline-block;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 2;
            color: var(--gray);
            margin-bottom: 30px;
            max-width: 300px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 50px;
            height: 50px;
            border: 1px solid var(--charcoal);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-size: 0.7rem;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            color: var(--black);
        }

        .footer-nav h4 {
            font-family: var(--font-mono);
            font-size: 0.65rem;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent-primary);
            margin-bottom: 30px;
        }

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav li {
            margin-bottom: 15px;
        }

        .footer-nav a {
            font-size: 0.9rem;
            color: var(--gray);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-nav a:hover {
            color: var(--white);
            transform: translateX(10px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 50px;
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--gray);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1200px) {
            .service-item {
                grid-template-columns: 80px 1fr 150px;
            }

            .service-desc {
                display: none;
            }

            .stylists-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1024px) {
            header {
                padding: 20px 30px;
            }

            .section-padding {
                padding: 80px 30px;
            }

            .hero-content {
                padding: 0 30px;
            }

            .concept-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .concept-visual {
                height: 60vh;
            }

            .service-item {
                padding: 40px 30px;
            }

            .stylists-intro {
                grid-template-columns: 1fr;
            }

            .access-grid {
                grid-template-columns: 1fr;
            }

            .access-map {
                height: 50vh;
            }

            .access-content {
                padding: 60px 30px;
            }

            .gallery-header,
            .gallery-slider {
                padding-left: 30px;
                padding-right: 30px;
            }

            .nav-content {
                grid-template-columns: 1fr;
                padding: 120px 30px 60px;
            }

            .nav-info {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* ==================== PAGE HEADER ==================== */
        .page-header {
            height: 50vh;
            min-height: 400px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-bottom: 0;
            background: var(--rich-black);
        }

        .page-header-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            filter: brightness(0.6);
            z-index: 1;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
        }

        .page-header-subtitle {
            font-family: var(--font-mono);
            letter-spacing: 0.2em;
            font-size: 0.9rem;
            color: var(--white);
            display: block;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeIn 1s ease forwards 0.5s;
        }

        .page-header-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 400;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.8s;
        }

        @media (max-width: 768px) {
            .page-header {
                height: 40vh;
            }

            .page-header-title {
                font-size: clamp(2.5rem, 10vw, 4rem);
            }

            /* --- HERO FIXES --- */
            .hero-title {
                font-size: clamp(3rem, 12vw, 5rem);
                margin-top: 20vh;
                /* Adjustment for spacing */
            }

            .hero-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
                /* Overlap fix */
                position: relative;
                z-index: 10;
            }

            .hero-description {
                margin-bottom: 20px;
                font-size: 0.9rem;
            }

            /* Move Magnetic Button to Scroll Indicator Position */
            .hero-cta {
                position: absolute;
                bottom: -100px;
                /* Adjust based on viewport */
                right: 20px;
                margin: 0;
            }

            .magnetic-btn {
                width: 100px;
                height: 100px;
            }

            .magnetic-btn text {
                font-size: 0.7rem;
            }

            .scroll-indicator {
                display: none;
                /* Hide Scroll Indicator */
            }

            /* --- HEADER FIXES --- */
            .header-location {
                display: none;
                /* Hide Location */
            }

            .menu-toggle span {
                background-color: var(--white);
                /* Ensure visibility */
            }

            /* --- SPACING FIXES --- */
            .section-title {
                margin-bottom: 40px;
                /* Reduce spacing between Word and Service Item */
            }

            .service-item {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
                padding: 30px 20px;
            }

            .service-num {
                display: none;
            }

            .service-price {
                text-align: center;
            }

            .stylists-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            /* --- GALLERY FIXES --- */
            .gallery-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .gallery-slider {
                padding: 0;
                scroll-snap-type: x mandatory;
            }

            .gallery-slide {
                width: 100%;
                /* Show only 1 slide */
                min-width: 100%;
                flex: 0 0 100%;
                scroll-snap-align: center;
            }

            /* Gallery Navigation Buttons for Mobile */
            .gallery-controls {
                display: flex;
                /* Ensure visible */
                justify-content: center;
                margin-top: 20px;
                width: 100%;
                gap: 40px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .reserve-title {
                font-size: clamp(2.5rem, 12vw, 5rem);
            }

            .reserve-btns {
                flex-direction: column;
                align-items: center;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .cursor,
            .cursor-follower,
            .cursor-text {
                display: none;
            }

            body {
                cursor: auto;
            }

            a,
            button {
                cursor: pointer;
            }
        }

        /* --- NEWS TAG VISIBILITY --- */
        .news-tag {
            border-color: var(--white) !important;
            color: var(--white) !important;
        }

        /* ==================== VISIBILITY IMPROVEMENTS & SUBPAGE STYLES ==================== */
        .menu-item-desc {
            font-size: 0.9rem;
            color: var(--silver);
            line-height: 1.6;
        }

        .staff-desc {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--silver);
            margin-bottom: 30px;
        }

        .btn-reserve {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: var(--white);
            border: 1px solid var(--white);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            font-family: var(--font-mono);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .btn-reserve:hover {
            background: var(--white);
            color: var(--black);
        }

        .filter-btn {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            padding: 10px 20px;
            border: 1px solid var(--gray);
            border-radius: 50px;
            color: var(--silver);
            transition: all 0.3s;
            cursor: pointer;
            background: transparent;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--white);
            color: var(--black);
            border-color: var(--white);
        }

        .blog-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--gray-light);
        }

        .access-note {
            margin-top: 40px;
            font-size: 0.9rem;
            color: var(--silver);
            line-height: 1.6;
        }

        .policy-text {
            font-size: 0.85rem;
            color: var(--silver);
            line-height: 1.8;
        }

        /* Gallery Fixes */
        .gallery-item {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            cursor: pointer;
            /* Fixed from 'group' */
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-title {
            font-family: var(--font-display);
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--white);
        }

        .gallery-tags {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--accent-secondary);
        }

        /* Access Layout Fixes */
        .access-intro-section {
            padding: 60px 20px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .access-intro-text {
            font-size: 1.1rem;
            line-height: 2;
            color: var(--silver);
        }

        .access-map-wrapper {
            margin-top: 0;
            /* Adjust if needed */
        }

        /* ==================== FOOTER VISIBILITY FIXES ==================== */
        footer li,
        footer li a,
        .footer-links li a {
            color: var(--silver) !important;
            /* Brighter color for better visibility */
        }

        footer li a:hover,
        .footer-links li a:hover {
            color: var(--white) !important;
        }

        .footer-brand p {
            color: var(--silver) !important;
            /* Brighter color for better visibility */
        }

        /* ==================== MOBILE RESPONSIVE STYLES ==================== */
        @media (max-width: 768px) {

            /* Navigation Menu Mobile Styles */
            .nav-content {
                overflow-y: auto;
                max-height: 100vh;
                padding: 20px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

            .nav-info {
                display: none !important;
            }

            .nav-menu a {
                font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
                white-space: nowrap;
                transition-delay: 0.3s !important;
            }

            .nav-menu {
                gap: 5px;
            }

            .nav-menu li a {
                transition-delay: 0.3s !important;
            }

            .header-location {
                display: none;
            }
        }