/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --obsidian: #1a1a1a;
    --ivory: #f8f6f0;
    --champagne-gold: #d4af37;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--ivory);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Header */
.header {
    background-color: var(--ivory);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-brand a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--obsidian);
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--champagne-gold);
    color: var(--obsidian);
}

.btn-primary:hover {
    background-color: #c49b2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--obsidian);
    border: 2px solid var(--champagne-gold);
}

.btn-secondary:hover {
    background-color: var(--champagne-gold);
    color: var(--obsidian);
}

.btn-product {
    background-color: var(--obsidian);
    color: var(--ivory);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-product:hover {
    background-color: var(--champagne-gold);
    color: var(--obsidian);
}

.btn-tier {
    background-color: transparent;
    color: var(--obsidian);
    border: 1px solid var(--medium-gray);
    padding: 0.75rem 1.5rem;
}

.btn-tier:hover {
    background-color: var(--obsidian);
    color: var(--ivory);
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--ivory) 0%, #f0ede5 100%);
    text-align: center;
}

.hero-title {
    color: var(--obsidian);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 6rem 0;
    text-align: center;
}

.section-title {
    text-align: center;
    color: var(--obsidian);
    margin-bottom: 4rem;
}

/* About Section */
.about {
    background-color: var(--ivory);
}

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

.about-text h2 {
    color: var(--obsidian);
    margin-bottom: 2rem;
}

.about-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    overflow: hidden;
    border-radius: 4px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

/* Services Section */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--ivory);
    border-radius: 4px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    color: var(--obsidian);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--medium-gray);
    font-size: 1rem;
}

/* Products Section */
.products {
    background-color: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 25px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.product-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    color: var(--obsidian);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.product-house {
    color: var(--champagne-gold);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-price {
    color: var(--obsidian);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Discovery Section */
.discovery {
    background-color: white;
}

.discovery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.discovery-text h2 {
    color: var(--obsidian);
    margin-bottom: 1.5rem;
}

.discovery-image {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
}

.discovery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

/* Membership Section */
.membership {
    background-color: var(--light-gray);
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.tier-card {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 4px;
    box-shadow: 0 6px 25px var(--shadow-light);
    text-align: center;
}

.tier-card.featured {
    border: 2px solid var(--champagne-gold);
    transform: scale(1.05);
}

.tier-card h3 {
    color: var(--obsidian);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.tier-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.tier-card ul li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Appointments Section */
.appointments {
    background-color: white;
}

.appointments-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.appointments-image {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
}

.appointments-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.appointments-text h2 {
    color: var(--obsidian);
    margin-bottom: 1.5rem;
}

/* Why Choose Section */
.why-choose {
    background-color: var(--ivory);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature h3 {
    color: var(--obsidian);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    color: var(--medium-gray);
    font-size: 1rem;
}

/* Contacts Section */
.contacts {
    background-color: white;
    text-align: left;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--obsidian);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.contact-form h3 {
    color: var(--obsidian);
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--obsidian);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: var(--ivory);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--champagne-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Footer */
.footer {
    background-color: var(--obsidian);
    color: var(--ivory);
    padding: 4rem 0 2rem;
    text-align: left;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .brand-name {
    color: var(--ivory);
}

.footer-brand p {
    color: var(--medium-gray);
    margin-top: 1rem;
}

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

.footer-column h4 {
    color: var(--champagne-gold);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--ivory);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--champagne-gold);
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: var(--ivory);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 4px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.close {
    color: var(--medium-gray);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--obsidian);
}

.modal-content h2 {
    color: var(--obsidian);
    margin-bottom: 2rem;
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .discovery-content,
    .appointments-content,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 2rem;
        width: 95%;
    }
    
    .membership-tiers {
        grid-template-columns: 1fr;
    }
    
    .tier-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .products-grid,
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-cta .btn {
        width: auto;
        min-width: 200px;
    }
}