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

:root {
    --primary-color: #0a0a0a;
    --primary-dark: #000000;
    --secondary-color: #d4af7a; /* Improved contrast from #c9b998 */
    --accent-color: #8b7355;
    --text-light: #d4af7a;
    --text-dark: #2a2a2a;
    --background-light: #1a1a18;
    --background-cream: #f5f1ea;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: auto;
    scroll-padding-top: 4rem;
}

body {
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-color);
}

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

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
}

/* Accessibility - Focus Styles */
a:focus,
button:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 100;
}

.skip-link:focus {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    font-weight: 600;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(201, 185, 152, 0.1);
}

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

.nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-brand:hover {
    opacity: 0.8;
}

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

.nav-menu a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #e5d4b8;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a18 100%);
    overflow: hidden;
    padding: 2.5rem 0 0.25rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(201, 185, 152, 0.02) 10px,
            rgba(201, 185, 152, 0.02) 20px
        );
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: var(--text-light);
}

.hero-logo {
    max-width: 200px;
    min-width: 150px;
    width: 200px;
    height: auto;
    flex-shrink: 0;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 0.35rem;
    letter-spacing: 3px;
    line-height: 1.05;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.85;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.75rem;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Barlow', sans-serif;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: transparent;
    color: var(--secondary-color);
}

/* Section Styles */
section {
    padding: 1rem 0;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    text-align: center;
    margin-bottom: 0.85rem;
    color: var(--secondary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Services Section */
.services {
    background-color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-card {
    background: rgba(201, 185, 152, 0.05);
    padding: 1rem 0.75rem;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(201, 185, 152, 0.2);
}

.service-card:hover,
.service-card:focus-within {
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.service-card p {
    color: #a09885;
    margin-bottom: 0.35rem;
    line-height: 1.4;
    font-size: 0.85rem;
}

.service-card p em {
    color: #8a826f;
    font-size: 0.65rem;
}

.service-time {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--secondary-color);
    opacity: 0.8;
}

.price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.services-cta {
    text-align: center;
    margin-top: 0.75rem;
}

/* Reviews Section */
.reviews {
    background-color: #0f0f0f;
    padding: 1rem 0;
}

.reviews-intro {
    text-align: center;
    font-size: 0.85rem;
    color: #a09885;
    margin-bottom: 0.75rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.review-card {
    background: rgba(201, 185, 152, 0.05);
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid rgba(201, 185, 152, 0.2);
}

.review-stars {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--secondary-color);
}

.review-text {
    color: #a09885;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    font-size: 0.75rem;
}

.review-author {
    color: var(--secondary-color);
    font-weight: 600;
    text-align: right;
    font-size: 0.75rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 0.75rem;
}

/* About Section */
.about {
    background-color: transparent;
    display: none;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 400;
    color: var(--secondary-color);
    font-family: 'Bebas Neue', sans-serif;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

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

.image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #8b7355, var(--secondary-color));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(139, 115, 85, 0.3);
}

/* Contact Section */
.contact {
    background-color: #1a1a1a;
    padding: 1rem 0 0.75rem 0;
}

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

.info-item {
    text-align: center;
    padding: 1rem 0.75rem;
    background: rgba(201, 185, 152, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(201, 185, 152, 0.2);
}

.info-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.info-item p {
    color: #a09885;
    line-height: 1.5;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.contact-link:hover {
    border-bottom-color: var(--secondary-color);
}

.map-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    transition: var(--transition);
}

.map-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.loading-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #a09885;
    font-style: italic;
    padding: 2rem;
}

.no-reviews {
    grid-column: 1 / -1;
    text-align: center;
    color: #a09885;
    padding: 2rem;
}

/* Footer */
.footer {
    background-color: transparent;
    color: var(--secondary-color);
    padding: 0.75rem 0;
    text-align: center;
    border-top: 1px solid rgba(201, 185, 152, 0.2);
}

.footer p {
    font-size: 0.75rem;
}

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

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.75rem;
}

.social-links a:hover {
    color: #e5d4b8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 2.5rem 0 2rem 0;
    }

    .hero-content {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-logo {
        max-width: 150px;
        width: 150px;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .footer .container {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 120px;
        width: 120px;
    }

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

    .service-card {
        padding: 0.75rem 0.5rem;
    }

    .service-card h3 {
        font-size: 0.85rem;
    }

    .service-card p {
        font-size: 0.65rem;
    }
}

