:root {
    --primary-dark: #0F0F19;
    --primary-accent: #E8B923;
    --secondary-accent: #D4AF37;
    --text-light: #F5F5F7;
    --text-gray: #A0A0A8;
    --background-card: #1A1A24;
    --border-subtle: rgba(232, 185, 35, 0.15);
    --gradient-gold: linear-gradient(135deg, #E8B923 0%, #D4AF37 100%);
    --shadow-glow: 0 0 30px rgba(232, 185, 35, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 25, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: -1px;
}

.logo-accent {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

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

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

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

.contact-btn {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.contact-btn:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.diagonal-strip {
    position: absolute;
    width: 150%;
    height: 400px;
    transform: rotate(-15deg);
    opacity: 0.03;
}

.strip-1 {
    background: var(--gradient-gold);
    top: -100px;
    left: -20%;
    animation: float 20s ease-in-out infinite;
}

.strip-2 {
    background: linear-gradient(135deg, #D4AF37 0%, #E8B923 100%);
    top: 30%;
    left: -10%;
    animation: float 25s ease-in-out infinite reverse;
}

.strip-3 {
    background: var(--gradient-gold);
    bottom: -100px;
    right: -20%;
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: rotate(-15deg) translateY(0);
    }
    50% {
        transform: rotate(-15deg) translateY(-50px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(232, 185, 35, 0.1);
    border: 1px solid var(--border-subtle);
    color: var(--primary-accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 650px;
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.button-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.about-section,
.advantages-section,
.gallery-section,
.location-section,
.contact-section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 80px;
    display: flex;
    align-items: baseline;
    gap: 30px;
}

.section-header.centered {
    justify-content: center;
}

.section-number {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-accent);
    opacity: 0.5;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -1px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.about-card {
    background: var(--background-card);
    border: 1px solid var(--border-subtle);
    padding: 50px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-glow);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 25px;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

.property-details {
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.05) 0%, rgba(15, 15, 25, 0) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    padding: 60px;
}

.details-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 50px;
}

.business-types {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.business-type {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background: rgba(26, 26, 36, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.business-type:hover {
    background: rgba(26, 26, 36, 0.8);
    transform: translateX(10px);
}

.type-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.type-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-accent);
}

.type-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.advantage-item {
    background: var(--background-card);
    border: 1px solid var(--border-subtle);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.advantage-item:hover::before {
    transform: scaleY(1);
}

.advantage-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    color: rgba(232, 185, 35, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.advantage-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    background: var(--background-card);
    border: 1px solid var(--border-subtle);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-glow);
}

.no-photo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(15, 15, 25, 0.95), transparent);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--primary-accent);
}

.location-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 16px;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--background-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--primary-accent);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 28px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-subtle);
    box-shadow: var(--shadow-glow);
}

.map-container iframe {
    display: block;
    filter: grayscale(100%) invert(90%) contrast(0.9);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.contact-card {
    background: var(--background-card);
    border: 1px solid var(--border-subtle);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 25px;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-link {
    display: block;
    color: var(--primary-accent);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-accent);
}

.contact-card p {
    color: var(--text-gray);
    font-size: 14px;
}

.partnership-banner {
    background: linear-gradient(135deg, rgba(255, 221, 45, 0.1) 0%, rgba(15, 15, 25, 0) 100%);
    border: 2px solid rgba(255, 221, 45, 0.3);
    border-radius: 25px;
    padding: 50px;
}

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

.partner-logo {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 221, 45, 0.2);
}

.partnership-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFDD2D;
}

.partnership-text p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

.footer {
    background: rgba(26, 26, 36, 0.5);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0;
    margin-top: 120px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 15px;
    font-size: 14px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 8px;
}

.contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.widget-toggle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(232, 185, 35, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(232, 185, 35, 0.4);
}

.widget-icon {
    font-size: 32px;
}

.widget-form {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    background: var(--background-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.widget-form.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-subtle);
}

.widget-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.widget-close {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.widget-close:hover {
    color: var(--primary-accent);
}

.widget-form form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.widget-form input,
.widget-form textarea {
    background: rgba(15, 15, 25, 0.5);
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    padding: 15px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.widget-form input:focus,
.widget-form textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    background: rgba(15, 15, 25, 0.8);
}

.widget-form input::placeholder,
.widget-form textarea::placeholder {
    color: var(--text-gray);
}

.widget-form textarea {
    resize: none;
}

.submit-btn {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 185, 35, 0.3);
}

.widget-success {
    padding: 40px 30px;
    text-align: center;
    display: none;
}

.widget-success.active {
    display: block;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.widget-success p {
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 64px;
    }
    
    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-grid,
    .advantages-grid,
    .gallery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        aspect-ratio: 1;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .partnership-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-info {
        text-align: left;
    }
    
    .widget-form {
        width: 320px;
        right: -10px;
    }
}