@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --gold: #C9A961;
    --gold-light: #E5D5A8;
    --gold-dark: #A08849;
    --gold-accent: #F4E4BC;
    --charcoal: #1A1A1A;
    --black: #0D0D0D;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-light: #E5E5E5;
    --gray: #B8B8B8;
    --gray-dark: #2D2D2D;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
    font-size: 18px;
}

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

/* Header - Elegant and refined */
header {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    color: var(--gold);
    letter-spacing: 0.5px;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    color: var(--gray);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

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

/* Hero Section - Sophisticated elegance */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    color: white;
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.hero p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    line-height: 1.7;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 16px 45px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.4s ease;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.2);
}

/* Section styling - Refined elegance */
.section {
    padding: 120px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--charcoal);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    margin-bottom: 70px;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: center;
    position: relative;
    font-style: italic;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--gold-light);
}

/* Advantages - Sophisticated cards */
.advantages {
    background: var(--black);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 70px;
}

.advantage-card {
    background: rgba(45, 45, 45, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.advantage-card:hover::before {
    transform: translateX(0);
}

.advantage-card:hover {
    transform: translateY(-8px);
    background: rgba(45, 45, 45, 0.6);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantage-card .checkmark {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 300;
}

.advantage-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.3;
}

.advantage-card p {
    font-family: 'Inter', sans-serif;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
}

.centered-message {
    text-align: center;
    margin-top: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.centered-message p {
    font-family: 'Inter', sans-serif;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
}

.centered-message a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.centered-message a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: var(--gold);
    transition: width 0.3s ease;
}

.centered-message a:hover {
    color: var(--gold-light);
}

.centered-message a:hover::after {
    width: 100%;
}

/* Services - Elegant presentation */
.services {
    background: var(--charcoal);
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: transparent;
    padding: 50px 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    transition: width 0.4s ease;
}

.service-item:hover::before {
    width: 4px;
}

.service-item:hover {
    padding-left: 30px;
}

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

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.3;
    transition: all 0.3s ease;
    font-style: italic;
}

.service-item:hover h3 {
    color: var(--gold-light);
}

.service-item p {
    font-family: 'Inter', sans-serif;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 700px;
}

/* Process Steps - Refined elegance */
.process {
    background: var(--black);
}

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

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 20px;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.step-number {
    font-family: 'Playfair Display', serif;
    width: auto;
    height: auto;
    background: transparent;
    color: var(--gold);
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 25px;
    display: block;
    font-style: italic;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.3;
}

.process-step p {
    font-family: 'Inter', sans-serif;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
}

/* Why Choose Us - Sophisticated presentation */
.why-choose {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.why-choose p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
}

.why-choose strong {
    color: var(--gold-light);
    font-weight: 500;
    font-style: normal;
}

/* FAQ - Sophisticated styling */
.faq {
    background: var(--charcoal);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: transparent;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-bottom-color: rgba(201, 169, 97, 0.3);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: transparent;
    color: var(--white);
    padding: 35px 0;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    cursor: pointer;
    font-size: 19px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    font-style: italic;
}

.faq-question:hover {
    color: var(--gold-light);
    padding-left: 20px;
}

.faq-question::after {
    content: "+";
    color: var(--gold);
    font-size: 22px;
    font-weight: 300;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    font-family: 'Inter', sans-serif;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--gold-light);
}

.faq-answer {
    padding: 0 0 35px 30px;
    color: var(--gray);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    display: none;
    font-weight: 300;
    border-left: 1px solid var(--gold);
}

/* Footer - Elegant conclusion */
footer {
    background: var(--black);
    color: white;
    text-align: center;
    padding: 100px 0 50px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    font-style: italic;
}

.contact-info {
    margin: 40px 0;
}

.contact-info p {
    margin-bottom: 12px;
    color: var(--gray);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
}

.contact-info strong {
    color: var(--gold);
    font-weight: 500;
}

/* About Section - Elegant presentation */
.about {
    background: var(--charcoal);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
    font-weight: 300;
}

/* Blog Section - Modern layout */
.blog {
    background: var(--black);
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-post {
    background: rgba(45, 45, 45, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 35px 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.blog-post:hover::before {
    transform: translateX(0);
}

.blog-post:hover {
    transform: translateY(-5px);
    background: rgba(45, 45, 45, 0.6);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-post h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.3;
    font-style: italic;
}

.blog-post p {
    font-family: 'Inter', sans-serif;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
}

/* Local SEO styling */
.local-seo {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.local-seo p {
    margin-bottom: 8px;
    color: var(--gray);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

/* Hero H2 styling */
.hero h2 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .advantages-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-item {
        padding: 30px 0;
    }

    .faq-question {
        padding: 20px 0;
        font-size: 18px;
    }
}

/* Animations */
.advantage-card,
.service-item,
.process-step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.advantage-card:nth-child(2) {
    animation-delay: 0.2s;
}

.advantage-card:nth-child(3) {
    animation-delay: 0.4s;
}

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