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

:root {
    --primary: #4D5014;
    --secondary: #746C48;
    --text: #000000;
    --heading: #5D4810;
    --cream: #F9F6F0;
    --display: 'Fraunces', serif;
    --body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ─── */
header {
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 5vw;
    border-bottom: 3px solid var(--secondary);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img { height: 50px; width: auto; }

nav { display: flex; gap: 2rem; font-size: 0.88rem; }

nav a {
    text-decoration: none;
    color: white;
    opacity: 0.92;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    transition: color 0.2s;
}
nav a:hover { color: var(--secondary); opacity: 1; }

.header-cta { display: flex; gap: 0.9rem; align-items: center; }

.header-cta a {
    color: white;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.55rem 1.25rem;
    border: 2px solid var(--secondary);
    transition: all 0.3s;
    white-space: nowrap;
}
.header-cta a:hover { background: var(--secondary); }

/* ─── HERO ─── */
.hero {
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 100%),
                url('/imgs/hero.jpg') center/cover;
    color: white;
    padding: 6rem 5vw;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.hero-content { max-width: 700px; }

.eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-family: var(--display);
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    color: white;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.72;
    margin-bottom: 2rem;
    opacity: 0.94;
    max-width: 600px;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
    padding: 0.95rem 2rem;
    border: none;
    font-family: var(--body);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 3px;
}
.btn-primary { background: var(--secondary); color: white; border: 2px solid var(--secondary); }
.btn-primary:hover { background: var(--heading); border-color: var(--heading); }
.btn-secondary { background: transparent; color: white; border: 2px solid white; }
.btn-secondary:hover { background: white; color: var(--heading); }
.btn-dark { background: var(--primary); color: white; border: 2px solid var(--primary); }
.btn-dark:hover { background: var(--heading); border-color: var(--heading); }

.hero-stats {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.25);
    max-width: 560px;
}
.stat-number {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    opacity: 0.85;
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── PAGE HERO (service pages — smaller) ─── */
.page-hero {
    background: linear-gradient(180deg, rgba(0,0,0,0.48) 0%, rgba(0,0,0,0.6) 100%),
                var(--hero-img, url('/imgs/facial.png')) center/cover;
    color: white;
    padding: 4rem 5vw;
    min-height: 320px;
    display: flex;
    align-items: center;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
    background: white;
    padding: 0.65rem 5vw;
    font-size: 0.82rem;
    color: var(--text);
    border-bottom: 1px solid rgba(77,80,20,0.08);
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: 0.55; margin: 0 0.4rem; }

/* ─── SECTIONS ─── */
section { padding: 5rem 5vw; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}
.section-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.85rem;
}
.section-header h2, .content-body h2 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.section-header p {
    font-size: 1rem;
    color: var(--text);
    opacity: 0.85;
    line-height: 1.7;
}

/* ─── CONTENT BODY (service pages) ─── */
.content-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.content-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.content-body h2:first-child { margin-top: 0; }

.content-body p {
    font-size: 1rem;
    line-height: 1.78;
    color: var(--text);
    margin-bottom: 1.1rem;
}
.content-body ul, .content-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.content-body li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.content-body strong { color: var(--primary); font-weight: 700; }
.content-body a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.content-body a:hover { color: var(--heading); }

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.93rem;
}
.comparison-table th {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 700;
}
.comparison-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid rgba(77,80,20,0.1);
    color: var(--text);
}
.comparison-table tr:nth-child(even) td { background: rgba(77,80,20,0.04); }

/* ─── SIDEBAR ─── */
.sidebar { position: sticky; top: 100px; }

.sidebar-cta {
    background: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}
.sidebar-cta h3 {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}
.sidebar-cta p { font-size: 0.9rem; opacity: 0.9; margin-bottom: 1.25rem; line-height: 1.6; }
.sidebar-cta .btn { display: block; text-align: center; width: 100%; margin-bottom: 0.75rem; background: var(--secondary); border-color: var(--secondary); }
.sidebar-cta .btn:hover { background: var(--heading); border-color: var(--heading); }
.sidebar-cta .phone { display: block; text-align: center; color: white; text-decoration: none; font-size: 0.85rem; opacity: 0.9; font-weight: 600; }
.sidebar-cta .phone:hover { opacity: 1; }

.sidebar-services {
    background: white;
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(77,80,20,0.07);
}
.sidebar-services h4 {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}
.sidebar-services a {
    display: block;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(77,80,20,0.08);
    transition: color 0.2s, padding-left 0.2s;
}
.sidebar-services a:last-child { border-bottom: none; }
.sidebar-services a:hover { color: var(--primary); padding-left: 0.4rem; }
.sidebar-services a.active { color: var(--primary); font-weight: 700; }

/* ─── SERVICE CARDS ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(77,80,20,0.07);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(77,80,20,0.13); }

.service-card-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 0.6rem;
}
.service-card-body p { font-size: 0.92rem; color: var(--text); opacity: 0.82; line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.service-card-body a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.service-card-body a::after { content: ' →'; margin-left: 0.3rem; }

/* ─── TRUST BAR ─── */
.trust-bar {
    background: var(--primary);
    color: white;
    padding: 2.5rem 5vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.trust-item h4 {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.trust-item p { font-size: 0.85rem; opacity: 0.92; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── ABOUT SECTION ─── */
.about { background: white; border-top: 1px solid rgba(77,80,20,0.07); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-content h2 {
    font-family: var(--display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    opacity: 0.85;
    margin-bottom: 1.2rem;
}
.about-content strong { color: var(--primary); font-weight: 700; }

.about-visual {
    height: 500px;
    background: url('/imgs/services-collage.png') center/cover;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(77,80,20,0.13);
}

/* ─── TEAM ─── */
.team { background: var(--cream); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.team-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(77,80,20,0.08);
    transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-4px); }
.team-photo { width: 100%; height: 360px; background-size: cover; background-position: center top; }
.team-info { padding: 1.75rem; text-align: center; }
.team-info h4 {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 0.3rem;
}
.team-role {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
}
.team-bio { font-size: 0.92rem; color: var(--text); opacity: 0.82; line-height: 1.65; }

/* ─── CTA BLOCK ─── */
.cta-block {
    background: linear-gradient(135deg, rgba(77,80,20,0.9) 0%, rgba(116,108,72,0.9) 100%),
                url('/imgs/facial.png') center/cover;
    padding: 5rem 5vw;
    text-align: center;
    color: white;
}
.cta-block h2 {
    font-family: var(--display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.cta-block p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* ─── FAQ ─── */
.faq { background: var(--cream); }

.faq-grid { display: grid; gap: 0.85rem; max-width: 900px; margin: 0 auto; }

.faq-item {
    background: white;
    border-left: 4px solid var(--primary);
    padding: 1.4rem 1.75rem;
    box-shadow: 0 2px 8px rgba(77,80,20,0.05);
    border-radius: 2px;
}
.faq-q {
    font-weight: 700;
    color: var(--heading);
    font-size: 1rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}
.faq-a { font-size: 0.93rem; color: var(--text); opacity: 0.82; line-height: 1.7; }

/* ─── FOOTER ─── */
footer {
    background: var(--primary);
    color: white;
    padding: 4rem 5vw 2rem;
    border-top: 3px solid var(--secondary);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.footer-brand img { height: 60px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; opacity: 0.88; line-height: 1.68; max-width: 270px; }
.footer-section h3 {
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
}
.footer-section a, .footer-section p {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.55rem;
    opacity: 0.88;
    text-decoration: none;
    color: white;
    line-height: 1.5;
}
.footer-section a:hover { opacity: 1; color: var(--secondary); }
.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.75rem;
    text-align: center;
    font-size: 0.82rem;
    opacity: 0.7;
    max-width: 1200px;
    margin: 0 auto;
}

/* ─── LOCATION CARDS ─── */
.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}
.location-card {
    background: white;
    padding: 1.75rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(77,80,20,0.07);
    border-top: 3px solid var(--primary);
    transition: transform 0.25s;
}
.location-card:hover { transform: translateY(-3px); }
.location-card h3 {
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 0.5rem;
}
.location-card p { font-size: 0.88rem; color: var(--text); opacity: 0.8; line-height: 1.6; }

/* ─── MEMBERSHIP CARDS ─── */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 860px;
    margin: 0 auto;
}
.membership-card {
    background: white;
    border-radius: 6px;
    padding: 2.25rem;
    box-shadow: 0 4px 16px rgba(77,80,20,0.08);
    border-top: 4px solid var(--primary);
    position: relative;
}
.membership-card.featured { border-top-color: var(--heading); }
.membership-card .badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--heading);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
}
.membership-card .price {
    font-family: var(--display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.membership-card .price span { font-size: 1rem; font-weight: 400; opacity: 0.65; }
.membership-card h3 {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading);
    margin: 0.5rem 0 1.25rem;
}
.membership-card ul { list-style: none; padding: 0; margin-bottom: 1.75rem; }
.membership-card li {
    font-size: 0.92rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(77,80,20,0.07);
    color: var(--text);
}
.membership-card li::before { content: '✓ '; color: var(--primary); font-weight: 700; }
.membership-card li:last-child { border-bottom: none; }
.membership-card .btn { display: block; text-align: center; width: 100%; }

/* ─── CONTACT FORM ─── */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-info h2 {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.contact-info p { font-size: 1rem; line-height: 1.75; color: var(--text); opacity: 0.85; margin-bottom: 1rem; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.contact-detail i { color: var(--primary); margin-top: 3px; min-width: 20px; }
.contact-detail a { color: var(--primary); text-decoration: none; font-weight: 600; }
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(77,80,20,0.09);
}
.contact-form h3 {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(77,80,20,0.2);
    border-radius: 4px;
    font-family: var(--body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.form-group textarea { height: 120px; resize: vertical; }
.contact-form .btn { width: 100%; display: block; text-align: center; }

/* ─── HOURS TABLE ─── */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.hours-table tr:nth-child(even) td { background: rgba(77,80,20,0.04); }
.hours-table td { padding: 0.6rem 1rem; border-bottom: 1px solid rgba(77,80,20,0.08); color: var(--text); }
.hours-table td:first-child { font-weight: 700; color: var(--heading); }

/* ─── UTILITY ─── */
.bg-cream { background: var(--cream); }
.bg-white { background: white; }
.text-center { text-align: center; }
.max-w { max-width: 1200px; margin: 0 auto; }

/* ─── SKIN-SCRIPTION GRID ─── */
.skin-scription-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}
@media (min-width: 901px) {
    .skin-scription-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .content-wrap { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .about-grid, .team-grid, .contact-wrap { grid-template-columns: 1fr; }
    .membership-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    nav { display: none; }
    .trust-bar { grid-template-columns: 1fr; gap: 1.25rem; }
    .hero-stats { grid-template-columns: 1fr; max-width: 240px; }
    .footer-grid { grid-template-columns: 1fr; }
    .header-cta a { padding: 0.4rem 0.75rem; font-size: 0.72rem; }
    section { padding: 3.5rem 5vw; }
    .about-visual { height: 280px; }
}
