/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --charcoal: #1a1a1a;
    --coal: #242424;
    --coal-light: #2e2e2e;
    --copper: #b87333;
    --copper-light: #d4956a;
    --cream: #f5f0eb;
    --warm-white: #faf8f5;
    --text: #e0dcd7;
    --text-muted: #8a8580;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--charcoal);
    color: var(--text);
    line-height: 1.7;
}

/* === NAV === */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background: var(--coal);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--copper);
}
.logo { 
    font-family: var(--font-heading); 
    font-size: 1.4rem; 
    font-weight: 700; 
    color: var(--cream); 
    letter-spacing: 0.04em;
}
.logo span { color: var(--copper); }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 0.82rem; 
    font-weight: 500; 
    letter-spacing: 0.08em; 
    text-transform: uppercase; 
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--copper); }
.hamburger { 
    display: none; 
    cursor: pointer; 
    font-size: 1.6rem; 
    color: var(--copper);
    background: none;
    border: none;
}

/* === HERO: FULL TRANSPARANT BACKGROUND IMAGE === */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(26,26,26,0.65), rgba(26,26,26,0.75));
    z-index: 0;
}
.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 2rem;
}
.hero-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--copper);
    color: var(--copper);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--cream);
}
.hero-content h1 em {
    font-style: italic;
    color: var(--copper);
}
.hero-tagline {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.hero-rating {
    color: var(--copper);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}
.hero-cta { 
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.cta-primary {
    background: var(--copper);
    color: var(--charcoal);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(184,115,51,0.3);
}
.cta-primary:hover { background: var(--copper-light); transform: translateY(-2px); }
.cta-outline {
    background: transparent;
    color: var(--cream);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    border: 1.5px solid rgba(245,240,235,0.3);
    transition: all 0.3s;
}
.cta-outline:hover { border-color: var(--copper); color: var(--copper); }

/* === DIVIDER === */
.divider {
    width: 60px;
    height: 2px;
    background: var(--copper);
    margin: 0 auto 1.5rem;
}

/* === TRUST BAR === */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2.5rem 2rem;
    background: var(--coal-light);
}
.trust-item { text-align: center; }
.trust-item .number { 
    display: block; 
    font-family: var(--font-heading); 
    font-size: 2.5rem; 
    font-weight: 700; 
    color: var(--copper); 
}
.trust-item .label { 
    font-size: 0.72rem; 
    text-transform: uppercase; 
    letter-spacing: 0.12em; 
    color: var(--text-muted); 
    margin-top: 0.3rem; 
}

/* === SECTIONS === */
section { padding: 5rem 2rem; }
section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--cream);
}
.section-subtitle { 
    text-align: center; 
    color: var(--text-muted); 
    margin-bottom: 3rem; 
    font-size: 0.95rem; 
}

/* === GALLERY: CENTERED GRID (NOT STRIP, NOT STANDARD GRID) === */
.gallery { background: var(--coal); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* === SERVICES: MINIMAL LIST (NOT CARDS) === */
.services { background: var(--charcoal); }
.services-list {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--coal-light);
    transition: all 0.3s;
}
.service-row:first-child { border-top: 1px solid var(--coal-light); }
.service-row:hover { padding-left: 8px; }
.service-row:hover .service-name { color: var(--copper); }
.service-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    transition: color 0.3s;
}
.service-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}
.service-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 2rem;
}
.service-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--copper);
}
.service-duration {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.service-cta {
    margin-left: 1.5rem;
    background: var(--copper);
    color: var(--charcoal);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: background 0.3s;
}
.service-cta:hover { background: var(--copper-light); }

/* === REVIEWS: SINGLE COLUMN CENTERED === */
.reviews { background: var(--coal); }
.reviews-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.review-card {
    background: var(--coal-light);
    border-radius: 12px;
    padding: 2rem;
    border-left: 3px solid var(--copper);
    position: relative;
}
.review-quote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.review-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--copper);
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    opacity: 0.4;
    font-family: Georgia, serif;
}
.review-stars { color: var(--copper); font-size: 0.9rem; margin-bottom: 0.5rem; }
.review-author { 
    font-size: 0.82rem; 
    font-weight: 600; 
    color: var(--text-muted); 
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === ABOUT: CENTERED TEXT === */
.about { background: var(--charcoal); }
.about-center {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.about-center h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 2rem;
}
.about-center p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.9;
}
.about-signature {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--copper);
    margin-top: 2rem;
}

/* === CONTACT === */
.contact { background: var(--coal); }
.contact h2 { color: var(--cream); }
.contact .section-subtitle { color: var(--text-muted); }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--coal-light);
    border-radius: 12px;
    border: 1px solid var(--coal-light);
    transition: border-color 0.3s;
}
.contact-item:hover { border-color: var(--copper); }
.contact-item .icon { font-size: 2rem; margin-bottom: 0.5rem; }
.contact-item h3 { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    margin-bottom: 0.5rem; 
    color: var(--text-muted); 
}
.contact-item p { font-size: 1rem; font-weight: 500; color: var(--cream); }
.contact-item a { color: var(--copper); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* === FOOTER === */
footer {
    background: var(--charcoal);
    border-top: 1px solid var(--coal-light);
    padding: 3rem 2rem;
    text-align: center;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--copper);
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.footer-links a { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 0.82rem; 
    transition: color 0.3s; 
}
.footer-links a:hover { color: var(--copper); }
footer p { font-size: 0.78rem; color: var(--text-muted); }

/* === STICKY CTA === */
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
}
.sticky-cta a {
    background: var(--copper);
    color: var(--charcoal);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(184,115,51,0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sticky-cta a:hover { background: var(--copper-light); }

/* === LIGHTBOX === */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 300;
    justify-content: center;
    align-items: center;
}
#lightbox.open { display: flex; }
#lightbox span {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

/* === MOBILE === */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--coal);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        border-top: 1px solid var(--coal-light);
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.8rem 2rem; }
    .hero { min-height: 85vh; }
    .hero-content h1 { font-size: 2.4rem; }
    .trust-bar { gap: 2rem; }
    .trust-item .number { font-size: 1.8rem; }
    .service-row { flex-wrap: wrap; gap: 0.5rem; }
    .service-right { align-items: flex-start; margin-left: 0; }
    .service-cta { margin-left: 0; width: 100%; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .sticky-cta { bottom: 1rem; right: 1rem; }
}
