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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #2c2b28;
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

/* Header - luxus */
header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    padding: 24px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(166, 124, 82, 0.15);
}

header.scrolled {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    color: #1a1a1a;
}

.logo-title {
    font-size: 0.7rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #a67c52;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c2b28;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #a67c52;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 1px;
    background-color: #2c2b28;
    margin: 6px;
    transition: 0.3s;
}

/* Hero - luxus */
.hero {
    min-height: 100vh;
    background: #faf8f5;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(166,124,82,0.03) 0%, transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #a67c52;
    font-weight: 300;
    display: block;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: #a67c52;
    margin: 30px 0 25px;
}

.hero-text p {
    font-size: 1rem;
    color: #5a5a57;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 450px;
}

.btn-primary {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    border: 1px solid #1a1a1a;
    transition: all 0.4s;
}

.btn-primary:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.image-frame {
    position: relative;
}

.image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(20%);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(166,124,82,0.3);
    z-index: -1;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a67c52;
}

.hero-scroll i {
    display: block;
    margin-top: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* About - luxus */
.about {
    padding: 120px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    color: #1a1a1a;
    padding-top: 20px;
}

.about-quote i {
    color: #a67c52;
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.6;
}

.section-title-luxury {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.title-decoration {
    width: 50px;
    height: 1px;
    background: #a67c52;
    margin-bottom: 32px;
}

.about-intro {
    font-size: 1.1rem;
    font-weight: 400;
    color: #2c2b28;
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-content p {
    color: #5a5a57;
    font-weight: 300;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.signature-luxury {
    margin-top: 40px;
}

.signature-luxury img {
    height: 50px;
    margin-bottom: 8px;
}

.signature-luxury span {
    font-size: 0.75rem;
    color: #a67c52;
    letter-spacing: 1px;
}

/* Services - luxus */
.services {
    padding: 120px 0;
    background: #fbf9f7;
}

.section-title-luxury-center {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.title-decoration-center {
    width: 50px;
    height: 1px;
    background: #a67c52;
    margin: 0 auto 56px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.service-card-luxury {
    text-align: center;
    padding: 40px 24px;
    background: #ffffff;
    transition: all 0.4s;
    border-bottom: 2px solid transparent;
}

.service-card-luxury:hover {
    transform: translateY(-8px);
    border-bottom-color: #a67c52;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(166,124,82,0.2);
    border-radius: 50%;
}

.service-icon i {
    font-size: 1.8rem;
    color: #a67c52;
}

.service-card-luxury h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card-luxury p {
    font-size: 0.85rem;
    color: #5a5a57;
    font-weight: 300;
    line-height: 1.6;
}

.service-line {
    width: 30px;
    height: 1px;
    background: #e0d6cd;
    margin: 20px auto 0;
    transition: width 0.3s;
}

.service-card-luxury:hover .service-line {
    width: 50px;
    background: #a67c52;
}

/* Contact - luxus */
.contact {
    padding: 120px 0;
    position: relative;
    background: #ffffff;
}

.contact-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: #f5f0eb;
    z-index: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.section-title-luxury-light {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.title-decoration-left {
    width: 50px;
    height: 1px;
    background: #a67c52;
    margin-bottom: 32px;
}

.contact-text {
    color: #5a5a57;
    margin-bottom: 48px;
    font-weight: 300;
    max-width: 400px;
}

.contact-details-luxury {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.2rem;
    color: #a67c52;
    margin-top: 4px;
}

.contact-item strong {
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.contact-item div {
    font-size: 0.9rem;
    color: #5a5a57;
    line-height: 1.5;
}

.contact-item a {
    color: #5a5a57;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #a67c52;
}

/* Form - luxus */
.contact-form-luxury {
    background: #ffffff;
    padding: 48px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-group {
    position: relative;
    margin-bottom: 32px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #e0d6cd;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    background: transparent;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #a67c52;
}

.form-group label {
    position: absolute;
    left: 0;
    bottom: 12px;
    font-size: 0.85rem;
    color: #999;
    pointer-events: none;
    transition: 0.3s;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    bottom: 40px;
    font-size: 0.7rem;
    color: #a67c52;
}

.btn-luxury {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-luxury:hover {
    background: #a67c52;
}

.btn-luxury i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-luxury:hover i {
    transform: translateX(4px);
}

.alert-luxury {
    padding: 16px;
    margin-bottom: 32px;
    font-size: 0.85rem;
}

.alert-luxury.success {
    background: #e8f0ea;
    border-left: 3px solid #2d6a4f;
    color: #1b4d3e;
}

.alert-luxury.error {
    background: #fae6e3;
    border-left: 3px solid #c45a3a;
    color: #8b3a24;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
}

.footer-title {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a67c52;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #a67c52;
}

.footer-social a {
    color: #aaa;
    margin-left: 20px;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #a67c52;
}

.footer-bottom {
    text-align: center;
    font-size: 0.7rem;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .contact-bg {
        display: none;
    }
    
    .contact-form-luxury {
        padding: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 70%;
        gap: 2rem;
        transition: 0.4s;
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0,0,0,0.05);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .burger {
        display: block;
        z-index: 1000;
    }
    
    .burger.active .line1 {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger.active .line2 {
        opacity: 0;
    }
    
    .burger.active .line3 {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-quote {
        font-size: 1.4rem;
    }
}