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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #333;
    background: #fff;
    line-height: 1.6;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 20px 20px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 32px;
    letter-spacing: 12px;
    color: #555;
    margin-bottom: 20px;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
}

.nav a:hover {
    color: #000;
}

/* Offset anchor links for sticky header */
#about, #services, #stylists, #contact {
    scroll-margin-top: 130px;
}

/* Hero */
#home {
    position: sticky;
    top: 0;
    z-index: 0;
}

.hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-media-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: none;
    max-height: 85vh;
}

.hero-img {
    width: 100%;
    display: block;
}

.hero-image3 {
    max-width: 820px;
    position: relative;
    z-index: 2;
    background: #fff;
    width: 100%;
    margin: 0 auto;
}

.hero-image3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #fff;
    z-index: -1;
}

.hero-image3 .hero-media-wrapper {
    border-radius: 0;
    margin-bottom: 0;
    max-height: none;
}

.about {
    position: relative;
    z-index: 2;
    background: #fff;
    width: 100%;
    padding: 80px calc((100% - 820px) / 2);
    text-align: center;
}

.section-title-script {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 48px;
    color: #555;
    margin-bottom: 10px;
}

.about-divider,
.contact-divider,
.stylists-divider {
    width: 50px;
    height: 2px;
    background: #999;
    margin: 15px auto 40px;
}

.about p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
.services {
    position: relative;
    z-index: 2;
    background: #fff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.services-button {
    text-align: center;
    border: 1.5px solid #555;
    display: block;
    padding: 20px 60px;
    letter-spacing: 10px;
    font-size: 18px;
    color: #444;
    font-weight: 400;
    margin: 0 auto 60px;
    width: fit-content;
    white-space: nowrap;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.services-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ddd;
}

.service-column {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-category {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 8px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.service-item {
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 22px;
    color: #333;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    max-width: 220px;
    margin: 0 auto;
}

.service-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 4px;
    color: #333;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.price-line {
    flex: 1;
    height: 1px;
    background: #aaa;
    margin: 0 12px;
}

/* Treatments */
.treatments-section {
    margin-top: 60px;
}

.treatments-image img,
.section-img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin-top: 20px;
    border-radius: 12px;
}

/* Stylists */
.stylists {
    position: relative;
    z-index: 2;
    background: #fff;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

.stylists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stylist-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    display: block;
    object-fit: cover;
}

.placeholder-photo {
    background: #ddd;
}

.stylist-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.stylist-social {
    margin-bottom: 5px;
}

.instagram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #333;
    border-radius: 50%;
    text-decoration: none;
    color: #333;
    font-size: 12px;
}

.book-now-link {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #444;
    text-decoration: none;
    border: 1px solid #b5a99a;
    background-color: #f5f0eb;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.book-now-link:hover {
    background-color: #e8dfd6;
    color: #222;
}

.stylist-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    max-width: 300px;
    margin: 0 auto;
}

/* Contact */
.contact {
    position: relative;
    z-index: 2;
    background: #f5f5f0;
    padding: 80px 40px;
}

.contact-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 20px 0 20px 60px;
}

.contact-info .section-title-script {
    text-align: left;
}

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

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 5px;
}

.contact-detail p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-map {
    min-height: 400px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid::before {
        display: none;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 20px;
    }

    .services-button {
        white-space: nowrap;
        width: auto;
        letter-spacing: 4px;
        padding: 16px 24px;
        font-size: 15px;
    }

    .service-category {
        white-space: nowrap;
        letter-spacing: 5px;
        font-size: 14px;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 24px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #888;
    border-top: 1px solid #e0e0e0;
}

.footer a {
    color: #888;
    text-decoration: none;
}

.footer a:hover {
    color: #444;
}
