/* --- ROOT VARIABLES --- */
:root {
    --cream: #F9F6F2;
    --gold: #C5A059;
    --dark-grey: #333333;
    --white: #ffffff;
    --nav-height: 90px;
}

/* --- GLOBAL STYLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--cream); color: var(--dark-grey); line-height: 1.6; }
h1, h2, h3, .nav-brand-text { font-family: 'Lora', serif; font-weight: 500; }

/* --- NAVIGATION --- */
nav { display: flex; justify-content: space-between; align-items: center; padding: 0 5%; height: var(--nav-height); background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-logo { display: flex; align-items: center; gap: 4px; z-index: 1001; }
.nav-icon { height: 50px; width: auto; }
.nav-brand-text { font-size: 1.5rem; color: var(--dark-grey); letter-spacing: -0.5px; margin-top: -6px; }
.menu-toggle { display: none; }
.nav-links { display: flex; list-style: none; }
.nav-links li a { text-decoration: none; color: var(--dark-grey); margin-left: 30px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; }

/* --- HERO --- */
.hero { min-height: calc(100vh - var(--nav-height)); display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; }
.main-logo { width: 100%; max-width: 450px; height: auto; margin-bottom: 20px; }
.tagline { font-size: 1.8rem; max-width: 800px; margin: 0 auto 30px auto; line-height: 1.4; }
.btn { display: inline-block; padding: 16px 40px; background-color: var(--gold); color: var(--white); text-decoration: none; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

/* --- ABOUT ME (CENTERED & SPACED) --- */
/* --- ABOUT ME (CENTERED NO-IMAGE) --- */
.centered-about { 
    text-align: center; /* This centers the heading and the divider */
    padding: 120px 20px; 
    background-color: var(--white); 
}

.about-content-wrapper { 
    max-width: 750px; 
    margin: 0 auto; 
}

.gold-divider { 
    width: 50px; 
    height: 2px; 
    background-color: var(--gold); 
    margin: 20px auto 40px auto; 
}

.about-text-full { 
    font-size: 1.1rem; 
    line-height: 2; 
    color: var(--dark-grey);
    text-align: center; /* ADD THIS: This forces the actual paragraphs to center */
}

.about-text-full p { 
    margin-bottom: 25px; 
    text-align: center; /* ADD THIS: Double-check for mobile browsers */
}

/* --- SERVICES (CONTRAST BACKGROUND) --- */
.services-section { 
    background-color: var(--cream); /* Cream background to stand out from About */
    text-align: center; 
    padding: 120px 20px; 
    border-top: 1px solid rgba(197, 160, 89, 0.1); /* Subtle line break */
}
.section-title { font-size: 2.2rem; margin-bottom: 10px; }
.service-subtitle { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 60px; }
.services-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-item { background: var(--white); padding: 40px 30px; border-radius: 15px; border-top: 4px solid var(--gold); text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.service-item h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--dark-grey); }
.treatment-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.treatment-tags span { background-color: var(--cream); padding: 6px 16px; border-radius: 50px; font-size: 0.75rem; border: 1px solid rgba(197,160,89,0.1); }

/* --- CONTACT --- */
.contact-section { padding: 120px 20px; background: var(--white); }
.contact-triple-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 25px; }
.contact-col { background: var(--white); padding: 25px; border-radius: 15px; border: 1px solid #f0f0f0; }
.method-tile { display: block; text-decoration: none; background: var(--cream); padding: 20px; border-radius: 10px; margin-bottom: 15px; text-align: center; transition: 0.3s; }
.tile-label { display: block; font-size: 0.7rem; color: var(--gold); font-weight: 600; text-transform: uppercase; margin-bottom: 5px; }
.tile-detail { font-size: 0.95rem; color: var(--dark-grey); font-weight: 500; }
.mini-form input, .mini-form textarea { width: 100%; padding: 12px; margin-bottom: 12px; border: 1px solid #eee; background: var(--cream); border-radius: 8px; font-family: inherit; }
.btn-small { width: 100%; padding: 15px; background: var(--gold); color: white; border: none; border-radius: 8px; font-size: 0.8rem; text-transform: uppercase; font-weight: 600; cursor: pointer; }

/* --- FOOTER --- */
footer { text-align: center; padding: 60px; font-size: 0.8rem; color: #999; background: var(--cream); }

/* --- MOBILE --- */
@media (max-width: 900px) {
    .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
    .hamburger span { display: block; width: 25px; height: 3px; background: var(--dark-grey); border-radius: 3px; transition: 0.3s; }
    .nav-links { position: absolute; top: var(--nav-height); left: 0; width: 100%; background: var(--white); flex-direction: column; align-items: center; padding: 40px 0; display: none; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .nav-links li { margin: 15px 0; }
    .nav-links li a { margin-left: 0; font-size: 1.1rem; }
    .menu-toggle:checked ~ .nav-links { display: flex; }
    .menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .contact-triple-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 140px 20px; }
    .section-title { font-size: 1.8rem; }
}