/* ==================== TOP PAGE STYLES (Extracted) ==================== */
: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;
}

/* View More Button Style */
.view-more-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid currentColor;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-more-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.view-more-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.view-more-btn:hover {
    border-color: var(--accent-primary);
    color: var(--white) !important;
}

/* ==================== 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 0.2s 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;
}

@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 li:nth-child(7) a {
    transition-delay: 0.9s;
}

.nav-menu li:nth-child(8) a {
    transition-delay: 0.95s;
}

.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: 0.3s;
}

.hero-title .line:nth-child(2) .line-inner {
    animation-delay: 0.45s;
}

.hero-title .line:nth-child(3) .line-inner {
    animation-delay: 0.6s;
}

@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: flex-end;
    /* Align single child (Reserve btn) to right */
    align-items: flex-end;
}

.hero-description {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    line-height: 2.2;
    color: var(--gray-light);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.9s;
    pointer-events: none;
    /* Let clicks pass through if needed */
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 1.1s;
}

.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-primary);
    margin-bottom: 30px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
}

.section-title .word {
    display: inline-block;
    overflow: hidden;
}

.section-title .word-inner {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.section-title.in-view .word-inner {
    transform: translateY(0);
}

/* ==================== CONCEPT SECTION ==================== */
.concept {
    background: var(--rich-black);
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.concept-visual {
    position: relative;
    height: 80vh;
}

.concept-image-wrapper {
    position: absolute;
    overflow: hidden;
}

.concept-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.concept-image-wrapper:hover img {
    transform: scale(1.1);
}

.concept-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-primary);
    z-index: 2;
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.concept-image-wrapper.revealed::before {
    transform: scaleX(0);
}

.concept-img-1 {
    width: 60%;
    height: 55%;
    top: 0;
    left: 0;
    z-index: 3;
}

.concept-img-2 {
    width: 50%;
    height: 45%;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.concept-img-3 {
    width: 35%;
    height: 30%;
    top: 40%;
    left: 45%;
    z-index: 4;
    border: 3px solid var(--accent-secondary);
}

.concept-content {
    padding: 50px 0;
}

.concept-text {
    font-size: 1.1rem;
    line-height: 2.5;
    color: var(--silver);
    margin-bottom: 50px;
}

.concept-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 50px;
    border-top: 1px solid var(--charcoal);
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-top: 10px;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background: var(--black);
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 100px;
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: grid;
    grid-template-columns: 100px 1fr 200px 100px;
    gap: 50px;
    align-items: center;
    padding: 50px 80px;
    border-bottom: 1px solid var(--charcoal);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary));
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.service-item:hover::before {
    transform: translateX(0);
}

.service-item>* {
    position: relative;
    z-index: 1;
}

.service-item:hover {
    color: var(--black);
}

.service-num {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-primary);
    transition: color 0.3s;
}

.service-item:hover .service-num {
    color: var(--black);
}

.service-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--silver);
    /* Brightened from --gray (#666) to #ccc */
    line-height: 1.8;
    transition: color 0.3s;
}

.service-item:hover .service-desc {
    color: rgba(0, 0, 0, 0.6);
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: right;
}

.service-image {
    position: fixed;
    width: 400px;
    height: 500px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
    border-radius: 5px;
}

.service-image.active {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== STYLISTS SECTION ==================== */
.stylists {
    background: var(--off-white);
    color: var(--black);
}

.stylists-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 100px;
}

.stylists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stylist-card {
    position: relative;
    overflow: hidden;
}

.stylist-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--silver);
}

.stylist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(100%); Removed */
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.stylist-card:hover .stylist-image img {
    /* filter: grayscale(0%); Removed */
    transform: scale(1.1);
}

.stylist-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    opacity: 0;
    display: none;
    /* Removed overlay gradient */
    transition: opacity 0.5s ease;
}

.stylist-card:hover .stylist-image::after {
    opacity: 1;
}

.stylist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    transform: translateY(0);
    /* Always visible */
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    color: var(--white);
}

.stylist-card:hover .stylist-info {
    transform: translateY(0);
}

.stylist-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.stylist-role {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-secondary);
}

.stylist-static-info {
    padding: 20px 0;
}

.stylist-static-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stylist-static-role {
    font-size: 0.7rem;
    color: var(--gray);
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    background: var(--black);
    padding: 0;
}

.gallery-header {
    padding: 100px 80px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.gallery-controls {
    display: flex;
    gap: 15px;
}

.gallery-btn {
    width: 60px;
    height: 60px;
    border: 1px solid var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--black);
}

.gallery-slider {
    display: flex;
    gap: 30px;
    padding: 0 80px 100px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex-shrink: 0;
    width: 400px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-slide:hover img {
    transform: scale(1.1);
}

.gallery-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    transform: translateY(101%);
    /* Fully hide */
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-slide:hover .gallery-slide-info {
    transform: translateY(0);
}

/* Hide mobile gallery navigation on desktop */
.gallery-nav-overlay {
    display: none;
}

.gallery-slide-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-slide-stylist {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-secondary);
    letter-spacing: 0.1em;
}

.gallery-slide-tags {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.gallery-slide:hover .gallery-slide-tags {
    opacity: 1;
    transform: translateY(0);
}

.gallery-slide-tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

/* ==================== NEWS SECTION ==================== */
.news {
    background: var(--dark);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 80px;
}

.news-card {
    position: relative;
    padding: 40px 20px;
    /* Added left/right padding */
    border-bottom: 1px solid var(--charcoal);
    transition: all 0.4s ease;
}

.news-card::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.news-card:hover::before {
    width: 100%;
}

.news-date {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-secondary);
    margin-bottom: 20px;
}

.news-title {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}


.news-card:hover .news-title {
    color: var(--white) !important;
    position: relative;
    z-index: 2;
}

.news-card:hover .news-date {
    color: var(--white);
}

.news-card:hover .news-tag {
    background: var(--accent-primary);
    color: var(--black);
    border-color: var(--accent-primary);
}

.news-tag {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--charcoal);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ==================== ACCESS SECTION ==================== */
.access {
    background: var(--black);
}

.access-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 80vh;
}

.access-map {
    position: relative;
    overflow: hidden;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(85%);
    transition: filter 0.5s ease;
}

.access-map:hover iframe {
    filter: grayscale(50%) invert(92%) contrast(90%);
}

.access-content {
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 50px;
}

.access-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.access-item-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.access-item-value {
    font-size: 1rem;
    line-height: 2;
    color: var(--silver);
}

/* ==================== RESERVE SECTION ==================== */
.reserve {
    background: var(--accent-primary);
    color: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reserve-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 25vw;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    pointer-events: none;
}

.reserve-content {
    position: relative;
    z-index: 1;
}

.reserve .section-label {
    color: var(--black);
}

.reserve .section-label::before {
    background: var(--black);
}

.reserve-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 50px;
}

.reserve-desc {
    max-width: 500px;
    margin: 0 auto 60px;
    font-size: 1rem;
    line-height: 2;
}

.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(--silver);
    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(--silver);
    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;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 40vh;
    }

    .page-header-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero {
        /* Ensure it fits within mobile viewport */
        min-height: 100vh;
        height: 100svh;
        align-items: flex-start;
        padding-top: 80px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.5rem);
        /* Reduced size */
        margin-top: 0;
        margin-bottom: 30px;
        line-height: 1.1;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        position: relative;
        z-index: 10;
        margin-top: 0;
        /* Let flex gap/margin-bottom of title handle spacing */
        width: 100%;
    }

    .hero-description {
        position: static !important;
        /* Override absolute positioning */
        bottom: auto !important;
        left: auto !important;
        margin: 0;
        font-size: 0.85rem;
        z-index: 20;
        background: rgba(0, 0, 0, 0.4);
        padding: 15px 20px;
        border-radius: 8px;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        pointer-events: auto !important;
    }

    .hero-cta {
        position: static;
        transform: none;
        margin: 0;
        width: auto;
        opacity: 1 !important;
        animation: none !important;
    }

    .magnetic-btn {
        width: 90px;
        /* Slightly smaller button */
        height: 90px;
    }

    .magnetic-btn-inner {
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
    }

    .magnetic-btn text {
        font-size: 0.65rem;
    }

    .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-header {
        justify-content: space-between;
        align-items: flex-end;
        flex-direction: row;
        /* Restore row layout for title */
        position: relative;
        margin-bottom: 20px;
    }

    /* Hide default controls container as we will move buttons */
    .gallery-controls {
        display: none;
    }

    .gallery-slider {
        padding: 0;
        scroll-snap-type: x mandatory;
    }

    .gallery-slide {
        width: 100%;
        min-width: 100%;
        flex: 0 0 100%;
        scroll-snap-align: center;
    }

    .gallery-controls {
        display: none;
    }

    /* Custom Navigation Buttons on Image */
    .gallery-slider {
        position: relative;
        /* Ensure positioning context */
    }

    .gallery-nav-overlay {
        position: absolute;
        top: 40%;
        /* Adjusted to center on the image area (accounting for info overlay at bottom) */
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        cursor: pointer;
    }

    .gallery-prev-mobile {
        left: 10px;
    }

    .gallery-next-mobile {
        right: 10px;
    }

    /* Add margin between gallery and view more */
    .gallery+div {
        margin-top: 60px !important;
    }

    /* Reduce padding below services header */
    .services-header {
        padding-bottom: 0px !important;
        margin-bottom: 50px !important;
    }

    .services-header .section-title {
        margin-bottom: 10px !important;
    }

    .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;
    }

    /* Navigation Menu Mobile Styles */
    .nav-content {
        overflow-y: auto;
        max-height: 100vh;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center menu vertically */
        align-items: center;
    }

    .nav-info {
        display: none !important;
        /* Hide nav-info on mobile */
    }

    .nav-menu a {
        font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
        white-space: nowrap;
        transition-delay: 0.3s !important;
        /* All items appear at same time */
    }

    .nav-menu {
        gap: 5px;
    }

    .nav-menu li a {
        transition-delay: 0.3s !important;
        /* Override staggered delays */
    }

    .scroll-indicator {
        display: none;
    }

    .header-location {
        display: none;
    }

    .menu-toggle span {
        background-color: var(--white);
    }

    .cursor,
    .cursor-follower,
    .cursor-text {
        display: none;
    }

    body {
        cursor: auto;
    }

    a,
    button {
        cursor: pointer;
    }
}

.section-title {
    margin-bottom: 40px;
}

.news-tag {
    border-color: var(--white);
    color: var(--white);
}