:root {
    --charcoal: #2C2C2C;
    --walnut: #6B4F3F;
    --gold: #C5A059;
    --off-white: #FAF9F6;
    --pure-white: #FFFFFF;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--off-white);
    color: var(--charcoal);
    line-height: 1.8;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav {
    background-color: var(--charcoal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.logo {
    color: var(--gold);
    font-weight: 900;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
}

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

.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.btn-small {
    background: var(--gold);
    color: var(--charcoal);
    padding: 8px 18px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Stylist Specific Button */
.stylist-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
}

.stylist-btn:hover {
    background-color: transparent;
    color: var(--walnut);
    border-color: var(--walnut);
}

.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('logo.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--off-white);
}

.hero-subtitle {
    letter-spacing: 6px;
    margin-bottom: 10px;
    font-weight: 300;
    color: var(--gold);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 30px;
}

.section {
    padding: 100px 10%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 15px auto;
}

.bg-charcoal { background-color: var(--charcoal); color: var(--off-white); }
.bg-offwhite { background-color: #f0eee9; }
.gold-text { color: var(--gold); }

.stylist-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stylist-card {
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-frame {
    border: 12px solid var(--walnut);
    margin-bottom: 25px;
    background-color: var(--walnut);
}

.stylist-card img {
    width: 100%;
    display: block;
    filter: sepia(20%);
}

.stylist-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--walnut);
}

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

.grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.pricing-list {
    list-style: none;
    column-count: 2;
    column-gap: 80px;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    break-inside: avoid;
}

.pricing-list li::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 1px;
    border-bottom: 2px dotted rgba(197, 160, 89, 0.3);
    z-index: 1;
}

.pricing-list li .service-name {
    background-color: var(--charcoal);
    padding-right: 15px;
    z-index: 2;
}

.pricing-list li .price-amount {
    background-color: var(--charcoal);
    padding-left: 15px;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2rem;
    z-index: 2;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    background: var(--pure-white);
    padding: 40px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--walnut);
}

.product-card img {
    width: 100%;
    margin-bottom: 20px;
}

.price {
    font-weight: 600;
    color: var(--walnut);
    font-size: 1.1rem;
}

.info-section {
    background-color: var(--walnut);
    color: var(--off-white);
    padding: 80px 10%;
}

.info-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.info-box h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.hours-list {
    list-style: none;
    min-width: 300px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(250, 249, 246, 0.1);
    padding: 10px 0;
}

footer {
    background: var(--charcoal);
    color: #888;
    text-align: center;
    padding: 40px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .info-container { flex-direction: column; text-align: center; }
    .hours-list li { justify-content: center; gap: 20px; }
    .pricing-list { column-count: 1; }
}
