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

:root {
    /* Elegant Color Palette */
    --primary-gold: #C9A882;
    --secondary-gold: #B8956A;
    --accent-rose: #D4C5B9;
    --warm-cream: #FAF9F7;
    --soft-brown: #8B8380;
    --dark-brown: #2C2826;
    --text-dark: #2C2826;
    --text-light: #FAF9F7;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
    --container-max: 1200px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: visible;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.nav-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-brown);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    background: linear-gradient(135deg, #2C2826 0%, #C9A882 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-logo h1 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--dark-brown);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(44, 40, 38, 0.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--dark-brown);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.btn-nav {
    background-color: var(--dark-brown);
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-brown);
}

.btn-nav:hover {
    background-color: transparent;
    color: var(--dark-brown) !important;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(44, 40, 38, 0.5), rgba(44, 40, 38, 0.5)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23E5E5E5" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 40, 38, 0.1), rgba(0, 0, 0, 0.2));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    max-width: 800px;
    padding: 20px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--warm-cream);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--warm-cream);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #C9A961, #B8956A);
    color: var(--dark-brown);
    padding: 16px 50px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #D4AF37;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E5C158, #D4AF37, #C9A961);
    color: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 15px;
}

.section-flourish {
    width: 200px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    opacity: 0.8;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--dark-brown);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 6px rgba(201, 168, 130, 0.6);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--soft-brown);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: var(--warm-cream);
}

.price-list-elegant {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--white);
    border-top: 1px solid var(--dark-brown);
    border-bottom: 1px solid var(--dark-brown);
}

.price-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 25px;
    position: relative;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-service {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-brown);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    padding-right: 10px;
}

.price-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(44, 40, 38, 0.2);
    margin: 0 10px 5px;
    min-width: 30px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--dark-brown);
    font-weight: 400;
    white-space: nowrap;
    padding-left: 10px;
}

.price-note {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
    padding: 0 40px;
}

.price-note p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--soft-brown);
    font-weight: 300;
    line-height: 1.8;
    font-style: italic;
}

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

.service-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 40, 38, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-gold);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.price-list {
    list-style: none;
    text-align: left;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(44, 40, 38, 0.08);
}

.price-list li:last-child {
    border-bottom: none;
}

.service-name {
    color: var(--text-dark);
    font-weight: 300;
    font-size: 0.95rem;
}

.service-price {
    color: var(--primary-gold);
    font-weight: 400;
    font-size: 0.95rem;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 300;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.feature-item p {
    color: var(--soft-brown);
    margin: 0;
}

.about-image {
    height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8E6E3, #D4C5B9);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.image-placeholder p {
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* Booking Section */
.booking {
    padding: var(--section-padding);
    background-color: var(--warm-cream);
}

.booking-calendly {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.booking-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 300;
    margin-bottom: 40px;
}

.calendly-button {
    display: inline-block;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--dark-brown);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 1px solid rgba(44, 40, 38, 0.15);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--warm-cream);
    transition: all 0.3s ease;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-brown);
    box-shadow: none;
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.booking-form button {
    width: 100%;
    margin-top: 15px;
    font-size: 1.1rem;
}

.form-note {
    text-align: center;
    color: var(--soft-brown);
    font-size: 0.9rem;
    margin-top: 15px;
}

.confirmation-message {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-brown);
    padding: 60px;
    border-radius: 0;
    text-align: center;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirmation-content {
    color: var(--white);
}

.confirmation-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: var(--white);
    color: var(--primary-gold);
    border-radius: 50%;
    font-size: 3rem;
    margin-bottom: 20px;
}

.confirmation-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.confirmation-content p {
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.contact-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--warm-cream);
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 40, 38, 0.05);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-card p {
    color: var(--soft-brown);
    line-height: 1.8;
}

.contact-form-container {
    position: relative;
}

.contact-form {
    background: var(--warm-cream);
    padding: 50px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(44, 40, 38, 0.05);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: var(--dark-brown);
    color: var(--warm-cream);
    padding: 80px 20px 40px;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-section p {
    line-height: 2;
    color: rgba(250, 249, 247, 0.7);
    font-weight: 300;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(250, 249, 247, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(250, 249, 247, 0.1);
    color: rgba(250, 249, 247, 0.5);
    font-weight: 300;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 400px;
    }
    
    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 10002;
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 9999;
        list-style: none;
        margin: 0;
        border-top: 2px solid var(--primary-gold);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        display: block;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 25px;
        font-size: 1rem;
        color: var(--dark-brown);
        text-decoration: none;
        border-bottom: 1px solid rgba(44, 40, 38, 0.05);
        transition: background-color 0.2s ease;
        background-color: var(--white);
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .nav-menu a:hover {
        background-color: var(--warm-cream) !important;
        color: var(--primary-gold) !important;
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .nav-menu a:hover {
        background-color: var(--primary-gold) !important;
        color: var(--white) !important;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile container overflow fix */
    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    /* Services section mobile fix */
    .services {
        overflow-x: hidden;
    }
    
    /* Price List Mobile Styles */
    .price-list-elegant {
        padding: 40px 15px;
        margin: 0 5px;
        width: calc(100% - 10px);
        box-sizing: border-box;
    }
    
    .price-item {
        margin-bottom: 20px;
        display: flex;
        align-items: baseline;
        width: 100%;
        overflow: hidden;
    }
    
    .price-service {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        flex-shrink: 1;
        min-width: 0;
        max-width: 50%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding-right: 5px;
    }
    
    .price-dots {
        flex: 1;
        margin: 0 5px 3px;
        min-width: 20px;
        border-bottom: 1px dotted rgba(44, 40, 38, 0.2);
    }
    
    .price-amount {
        font-size: 0.9rem;
        flex-shrink: 0;
        padding-left: 5px;
        white-space: nowrap;
        font-weight: 500;
    }
    
    .price-note {
        padding: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 30px 25px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* Extra small mobile pricing adjustments */
    .price-list-elegant {
        padding: 25px 10px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .price-item {
        margin-bottom: 18px;
        display: flex;
        align-items: baseline;
        width: 100%;
        overflow: hidden;
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    .price-service {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
        max-width: 45%;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding-right: 3px;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .price-dots {
        flex: 1;
        margin: 0 3px 2px;
        min-width: 15px;
        border-bottom: 1px dotted rgba(44, 40, 38, 0.2);
    }
    
    .price-amount {
        font-size: 0.8rem;
        flex-shrink: 0;
        padding-left: 3px;
        white-space: nowrap;
        font-weight: 500;
    }
    
    .price-note {
        padding: 0 10px;
    }
    
    .price-note p {
        font-size: 0.75rem;
        line-height: 1.6;
    }
}
