:root {
    --gold: #c5a880;
    --dark: #1b1b1b;
    --light-dark: #242424;
    --text-light: #e0d9d0;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--dark); color: var(--text-light); font-family: var(--font-body); line-height: 1.6; }

.nav { display: flex; justify-content: space-between; align-items: center; padding: 2rem 5%; background: var(--dark); border-bottom: 1px solid rgba(197, 168, 128, 0.15); }
.logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.links a { color: var(--text-light); text-decoration: none; margin-left: 2rem; transition: color 0.3s; }
.links a:hover { color: var(--gold); }
.btn-book { border: 1px solid var(--gold); padding: 0.5rem 1.2rem; color: var(--gold) !important; font-weight: bold; }
.btn-book:hover { background: var(--gold); color: var(--dark) !important; }

.hero { display: flex; padding: 6rem 5%; align-items: center; gap: 4rem; justify-content: space-between; min-height: 70vh; }
.hero-content { flex: 1.5; }
.hero-content h1 { font-family: var(--font-head); font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-content h1 span { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-content p { font-size: 1.2rem; color: #b0a8a0; margin-bottom: 2.5rem; max-width: 500px; }

.btn-primary { background: var(--gold); color: var(--dark); text-decoration: none; padding: 0.9rem 2.2rem; font-weight: 600; display: inline-block; transition: background 0.3s; }
.btn-primary:hover { background: #b39670; }

/* Rotating Barber Pole */
.barber-pole { flex: 0.8; width: 120px; height: 350px; background: #fff; border: 10px solid #444; border-radius: 60px; overflow: hidden; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.pole-stripes { width: 100%; height: 200%; background: repeating-linear-gradient(45deg, #d32f2f, #d32f2f 20px, #fff 20px, #fff 40px, #0d47a1 40px, #0d47a1 60px, #fff 60px, #fff 80px); animation: roll 5s linear infinite; }
@keyframes roll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

.services { padding: 6rem 5%; background: var(--light-dark); }
.title { font-family: var(--font-head); font-size: 3rem; text-align: center; margin-bottom: 4rem; color: var(--gold); }
.service-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 3rem; }
.service-item { border-bottom: 1px dashed rgba(255,255,255,0.1); padding-bottom: 1.5rem; }
.service-header { display: flex; justify-content: space-between; font-family: var(--font-head); font-size: 1.6rem; margin-bottom: 0.5rem; }
.service-header h3 { font-weight: normal; }
.price { color: var(--gold); font-weight: bold; }
.service-item p { color: #888; }

.about { display: flex; padding: 8rem 5%; gap: 4rem; align-items: center; }
.about-img { flex: 1; }
.about-img img { width: 100%; max-height: 450px; object-fit: cover; border: 4px solid var(--gold); }
.about-text { flex: 1.2; }
.about-text h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 2rem; color: var(--gold); }
.about-text p { font-size: 1.15rem; color: #b0a8a0; line-height: 1.8; }

footer { padding: 6rem 5% 8rem; text-align: center; border-top: 1px solid rgba(197, 168, 128, 0.15); }
footer h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 1rem; color: var(--gold); }
footer p { font-size: 1.2rem; color: #888; margin-bottom: 2.5rem; }

@media (max-width: 900px) {
    .hero, .about { flex-direction: column; text-align: center; }
    .hero-image3d { justify-content: center; }
    .barber-pole { display: none; }
}