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

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.7;
    color: #2c1810;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
    position: relative;
}

.luxury-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid rgba(218, 165, 32, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    text-align: center;
    position: relative;
}

.logo-ornament {
    font-size: 1.8rem;
    color: #daa520;
    margin-bottom: 0.3rem;
    display: block;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #8b4513;
    font-weight: 600;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}

.logo span {
    font-size: 0.8rem;
    color: #a0522d;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.nav-menu a {
    text-decoration: none;
    color: #8b4513;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #daa520, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-menu a:hover {
    color: #daa520;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #8b4513;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 0 2rem;
    margin-top: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    flex: 1;
    padding-right: 3rem;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #daa520, #b8860b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
    position: relative;
}

.badge-ornament {
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: #8b4513;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-title em {
    font-style: italic;
    color: #daa520;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5d4e37;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-style: italic;
}

.hero-distinctions {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.distinction {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.distinction i {
    color: #daa520;
    font-size: 1.3rem;
}

.distinction span {
    color: #8b4513;
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: linear-gradient(135deg, #daa520, #b8860b);
    color: white;
    padding: 1.3rem 2.8rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(218, 165, 32, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #f5f1eb, #e8dcc0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.luxury-frame {
    width: 90%;
    height: 90%;
    border: 3px solid #daa520;
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.frame-ornament {
    position: absolute;
    font-size: 1.5rem;
    color: #daa520;
}

.frame-ornament.top-left { top: -8px; left: -8px; }
.frame-ornament.top-right { top: -8px; right: -8px; }
.frame-ornament.bottom-left { bottom: -8px; left: -8px; }
.frame-ornament.bottom-right { bottom: -8px; right: -8px; }

.luxury-content {
    text-align: center;
}

.luxury-content i {
    font-size: 4rem;
    color: #daa520;
    margin-bottom: 1rem;
}

.luxury-content span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8b4513;
    font-weight: 600;
}

.about {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.luxury-divider {
    text-align: center;
    margin-bottom: 2rem;
}

.luxury-divider span {
    font-size: 1.5rem;
    color: #daa520;
    letter-spacing: 2rem;
}

.luxury-divider.small span {
    font-size: 1rem;
    letter-spacing: 0.5rem;
}

.about h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about p {
    font-size: 1.2rem;
    color: #5d4e37;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.about strong {
    color: #8b4513;
    font-weight: 700;
}

.services {
    padding: 6rem 0;
    background: rgba(250, 248, 245, 0.8);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: #5d4e37;
    font-style: italic;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(218, 165, 32, 0.2);
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: #daa520;
}

.service-card.signature {
    border: 3px solid #daa520;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 248, 245, 0.95));
}

.service-luxury-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: linear-gradient(135deg, #8b4513, #654321);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #daa520, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 12px 30px rgba(218, 165, 32, 0.3);
}

.service-icon i {
    font-size: 2.8rem;
    color: white;
}

.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-description p {
    color: #5d4e37;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-price {
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #a0522d;
    margin-bottom: 0.5rem;
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #daa520;
    font-weight: 700;
}

.luxury-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(218, 165, 32, 0.3);
}

.luxury-features span {
    color: #8b4513;
    font-weight: 500;
    font-size: 0.95rem;
}

.heritage {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.4);
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.heritage-text p {
    font-size: 1.2rem;
    color: #5d4e37;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.heritage-pillars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #daa520, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-icon i {
    font-size: 1.8rem;
    color: white;
}

.pillar h5 {
    font-family: 'Playfair Display', serif;
    color: #8b4513;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.pillar p {
    color: #5d4e37;
    line-height: 1.6;
    font-size: 1rem;
}

.timeline-luxury {
    position: relative;
    padding-left: 2rem;
}

.timeline-luxury::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #daa520, #b8860b);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(218, 165, 32, 0.2);
}

.timeline-ornament {
    position: absolute;
    left: -32px;
    top: 30px;
    width: 30px;
    height: 30px;
    background: #daa520;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    border: 4px solid rgba(250, 248, 245, 1);
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #daa520;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content h5 {
    font-family: 'Playfair Display', serif;
    color: #8b4513;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.timeline-content p {
    color: #5d4e37;
    font-style: italic;
}

.privileges {
    padding: 6rem 0;
    background: rgba(250, 248, 245, 0.8);
}

.privileges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.privilege-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
}

.privilege-card:hover {
    transform: translateY(-5px);
    border-color: #daa520;
}

.privilege-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b4513, #654321);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.privilege-icon i {
    font-size: 2rem;
    color: white;
}

.privilege-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #8b4513;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privilege-card p {
    color: #5d4e37;
    line-height: 1.7;
    font-size: 1rem;
}

.contact {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.4);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.8rem;
    color: #daa520;
    margin-top: 0.3rem;
    min-width: 35px;
}

.contact-item strong {
    display: block;
    color: #8b4513;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-item p {
    color: #5d4e37;
    margin: 0;
    line-height: 1.6;
}

.contact-item em {
    color: #daa520;
    font-weight: 500;
    font-style: italic;
}

.luxury-contact-card {
    background: linear-gradient(135deg, #8b4513, #654321);
    color: rgba(255, 255, 255, 0.95);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.3);
    position: relative;
}

.luxury-card-ornament {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #daa520;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    border: 4px solid rgba(250, 248, 245, 1);
}

.luxury-contact-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.luxury-contact-card p {
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.luxury-services-highlight {
    margin: 2.5rem 0;
}

.luxury-services-highlight h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #daa520;
    font-weight: 600;
}

.signature-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.signature-service:last-child {
    border-bottom: none;
}

.signature-service span {
    font-weight: 500;
}

.signature-service em {
    color: #daa520;
    font-weight: 600;
    font-style: normal;
}

.maison-credentials {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2.5rem;
    text-align: center;
}

.maison-credentials p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.maison-credentials em {
    color: #daa520;
    font-style: italic;
}

.footer {
    background: linear-gradient(135deg, #8b4513, #654321);
    color: rgba(255, 255, 255, 0.95);
    padding: 3rem 0;
}

.footer-luxury {
    text-align: center;
}

.footer-luxury p {
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-distinctions {
        flex-direction: column;
        gap: 1.5rem;
    }

    .image-placeholder {
        width: 320px;
        height: 320px;
    }

    .services-grid,
    .privileges-grid {
        grid-template-columns: 1fr;
    }

    .heritage-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline-luxury {
        padding-left: 1.5rem;
    }

    .nav {
        padding: 1.2rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}