/* ============================================
   THE MANSION - Main Stylesheet
   Luxury Studio Experience
   ============================================ */

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

:root {
    --color-bg: #0a0a0a;
    --color-bg-light: #111111;
    --color-text: #f5f0eb;
    --color-text-muted: rgba(245, 240, 235, 0.5);
    --color-accent: #c8a96e;
    --color-accent-light: #dcc697;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-card-bg: rgba(255, 255, 255, 0.04);
    --color-border: rgba(255, 255, 255, 0.08);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    --nav-height: 80px;
}

html {
    font-size: 16px;
    scroll-behavior: auto; /* Lenis handles smooth scroll */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
    height: auto;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    cursor: none;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: var(--color-text-muted);
}

.preloader-line {
    width: 60px;
    height: 1px;
    background: var(--color-accent);
    transform-origin: left;
    animation: preloaderLine 1.2s var(--ease-out-expo) infinite;
}

@keyframes preloaderLine {
    0% { transform: scaleX(0); opacity: 0; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0); opacity: 0; transform-origin: right; }
}

/* --- Custom Cursor --- */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(200, 169, 110, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border-color 0.3s;
}

body:hover .cursor,
body:hover .cursor-follower {
    opacity: 1;
}

.cursor.hovering {
    width: 48px;
    height: 48px;
    background: rgba(200, 169, 110, 0.15);
}

.cursor-follower.hovering {
    width: 56px;
    height: 56px;
    border-color: var(--color-accent);
}

/* --- Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 48px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--booking {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 8px 20px;
    border-radius: 2px;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.nav-link--booking::after {
    display: none;
}

.nav-link--booking:hover {
    border-color: var(--color-accent);
    background: rgba(200, 169, 110, 0.08);
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--color-text);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1100;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-text);
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text);
    transition: color 0.3s;
}

.mobile-menu-link:hover {
    color: var(--color-accent);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--color-white);
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(40px);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(30px);
}

.btn-play:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-accent);
    color: var(--color-accent-light);
}

.btn-play svg {
    transition: transform 0.3s;
}

.btn-play:hover svg {
    transform: scale(1.15);
}

.hero-description {
    position: absolute;
    bottom: 100px;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-description p {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--color-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   HIGHLIGHTS SECTION
   ============================================ */
.highlights {
    padding: 120px 48px;
    max-width: 1600px;
    margin: 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 75vh;
    min-height: 500px;
    margin-bottom: 16px;
}

.highlight-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.highlight-item--large {
    grid-row: 1 / -1;
}

.highlight-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.highlight-img-wrap img {
    transition: transform 1.2s var(--ease-out-expo);
}

.highlight-item:hover .highlight-img-wrap img {
    transform: scale(1.05);
}

.highlight-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.highlight-tag {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-light);
}

/* Highlights Row */
.highlights-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    height: 40vh;
    min-height: 300px;
    margin-bottom: 120px;
}

/* Divider */
.highlights-divider {
    text-align: left;
    padding: 80px 0;
}

.divider-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 32px;
}

.divider-description {
    max-width: 680px;
    opacity: 0;
    transform: translateY(30px);
}

.divider-description p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-muted);
    border-left: 1px solid var(--color-accent);
    padding-left: 24px;
}

/* ============================================
   FEATURES - Horizontal Scroll
   ============================================ */
.features {
    position: relative;
    height: 300vh; /* Creates scroll distance */
    overflow: hidden;
    background: var(--color-bg);
}

.features-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.features-track {
    display: flex;
    gap: 20px;
    padding: 0 48px;
    will-change: transform;
}

.feature-slide {
    position: relative;
    flex: 0 0 auto;
    width: 65vw;
    height: 75vh;
    border-radius: 6px;
    overflow: hidden;
}

.feature-slide img {
    transition: transform 0.8s var(--ease-out-expo);
}

.feature-slide:hover img {
    transform: scale(1.03);
}

.feature-slide-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 2px;
}

/* Features Side Tabs */
.features-tabs {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.features-tabs.visible {
    opacity: 1;
    visibility: visible;
}

.features-tab {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 20px 14px;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(200, 169, 110, 0.12);
    border: 1px solid rgba(200, 169, 110, 0.2);
    color: var(--color-accent-light);
    transition: background 0.3s, color 0.3s;
    border-radius: 2px 0 0 2px;
    cursor: default;
    pointer-events: none;
}

.features-tab.active {
    background: var(--color-accent);
    color: var(--color-black);
    pointer-events: none;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg);
}

.services-bg {
    position: absolute;
    inset: 0;
}

.services-bg img {
    filter: blur(2px) brightness(0.3);
    transform: scale(1.05);
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.services-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 80px 24px;
}

.services-label {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
}

.services-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.services-list {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    line-height: 2.8;
    color: var(--color-text);
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
}

.services-list .dot {
    margin: 0 12px;
    color: var(--color-accent);
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: 1px solid var(--color-accent);
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(200, 169, 110, 0.08);
    transition: all 0.4s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(20px);
}

.btn-book:hover {
    background: var(--color-accent);
    color: var(--color-black);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    position: relative;
    z-index: 3;
    padding: 0;
    background: var(--color-bg);
}

.location-image-wrap {
    position: relative;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
}

.location-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Hotspots */
.hotspot {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
}

.hotspot-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-white);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.hotspot-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: hotspotPulse 2s ease-in-out infinite;
}

@keyframes hotspotPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 0; }
}

.hotspot-dot:hover {
    transform: scale(1.3);
}

.hotspot-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 2px;
    white-space: nowrap;
}

/* ============================================
   DETAILS SECTION
   ============================================ */
.details {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 48px;
}

.details-bg {
    position: absolute;
    inset: 0;
}

.details-bg img {
    filter: brightness(0.5);
}

.details-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.7) 100%
    );
}

.details-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 60px;
}

.details-title span {
    display: block;
    overflow: hidden;
}

.details-info {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
}

.details-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: 4px;
}

.details-card p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

/* Stats */
.details-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
}

.stat.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--color-accent-light);
    line-height: 1;
    display: inline;
}

.stat-unit {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--color-accent);
    vertical-align: super;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 12px;
}

/* ============================================
   INTERIOR GALLERY
   ============================================ */
.interior-gallery {
    padding: 120px 48px;
    background: var(--color-bg);
}

.interior-gallery-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.interior-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 2/3;
    opacity: 0;
    transform: translateY(60px);
}

.interior-item img {
    transition: transform 1.2s var(--ease-out-expo);
}

.interior-item:hover img {
    transform: scale(1.06);
}

.interior-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s, transform 0.4s;
}

.interior-item:hover .interior-label {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   KONTAKT SECTION
   ============================================ */
.kontakt {
    padding: 120px 48px;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.kontakt-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.kontakt-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--color-white);
    margin-bottom: 40px;
}

.kontakt-details p {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    line-height: 2;
}

.kontakt-company {
    color: var(--color-text) !important;
    font-weight: 500 !important;
    margin-bottom: 8px;
}

.kontakt-right {
    display: flex;
    align-items: flex-end;
}

.kontakt-contact p {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    line-height: 2;
}

.kontakt-contact a {
    color: var(--color-accent-light);
    transition: color 0.3s;
}

.kontakt-contact a:hover {
    color: var(--color-accent);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 32px 48px;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-accent-light);
}

.footer-sep {
    color: var(--color-text-muted);
    font-size: 0.6rem;
}

/* ============================================
   ANIMATION STATES (initial states for GSAP)
   ============================================ */
[data-anim="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
}

[data-anim="reveal-left"] {
    clip-path: inset(0 100% 0 0);
}

[data-anim="reveal-right"] {
    clip-path: inset(0 0 0 100%);
}

[data-anim="reveal-up"] {
    clip-path: inset(100% 0 0 0);
}

[data-anim="reveal-text"] span {
    display: block;
    overflow: hidden;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features .feature-slide {
        width: 80vw;
    }

    .highlights-grid {
        height: 60vh;
    }

    .details-stats {
        gap: 48px;
    }

    .interior-gallery-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    /* Hide desktop nav, show mobile */
    .nav-left, .nav-right, .nav-logo {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .site-header {
        padding: 0 24px;
        justify-content: flex-start;
    }

    .site-header .nav-container {
        display: none;
    }

    /* Logo visible on mobile */
    .site-header::before {
        content: 'THE MANSION';
        font-family: var(--font-display);
        font-size: 0.85rem;
        font-weight: 400;
        letter-spacing: 0.35em;
        color: var(--color-text);
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    .hero-description {
        bottom: 80px;
    }

    /* Highlights */
    .highlights {
        padding: 60px 20px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
    }

    .highlight-item--large {
        grid-row: auto;
        height: 50vh;
    }

    .highlight-item--top-right,
    .highlight-item--bottom-right {
        height: 35vh;
    }

    .highlights-row {
        grid-template-columns: 1fr;
        height: auto;
    }

    .highlights-row .highlight-item {
        height: 40vh;
    }

    .divider-text {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    /* Features */
    .features {
        height: 200vh;
    }

    .feature-slide {
        width: 85vw !important;
        height: 60vh;
    }

    .features-tabs {
        display: none;
    }

    /* Services */
    .services-content {
        padding: 60px 20px;
    }

    .services-list {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
    }

    /* Details */
    .details {
        padding: 80px 20px;
    }

    .details-stats {
        flex-wrap: wrap;
        gap: 32px;
        justify-content: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Interior Gallery */
    .interior-gallery {
        padding: 60px 20px;
    }

    .interior-gallery-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Kontakt */
    .kontakt {
        padding: 60px 20px;
    }

    .kontakt-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kontakt-right {
        align-items: flex-start;
    }

    /* Footer */
    .site-footer {
        padding: 24px 20px;
    }

    /* Custom cursor hidden on mobile */
    .cursor, .cursor-follower {
        display: none !important;
    }

    body {
        cursor: auto;
    }
}

@media (max-width: 480px) {
    .interior-gallery-track {
        grid-template-columns: 1fr;
    }

    .interior-item {
        aspect-ratio: 3/4;
    }
}

/* ============================================
   UTILITY: Smooth reveal for images
   ============================================ */
.img-revealed {
    animation: imgReveal 1.2s var(--ease-out-expo) forwards;
}

@keyframes imgReveal {
    from { clip-path: inset(100% 0 0 0); }
    to { clip-path: inset(0); }
}

/* Selection color */
::selection {
    background: var(--color-accent);
    color: var(--color-black);
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 2px;
}
