:root {
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #a68a3a;
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --card: #222222;
  --text: #a0a0a0;
  --white: #f5f5f5;
  --gradient-gold: linear-gradient(135deg, #c9a84c, #e8d5a3, #c9a84c);
  --radius: 4px;
  --shadow: 0 20px 60px rgba(201, 168, 76, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--black);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  line-height: 1.15;
}

/* Navbar */
.navbar {
  padding: 1.25rem 0;
  transition: all 0.4s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(201, 168, 76, 0.15);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 1px;
}

.navbar-brand span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0.75rem;
}

.nav-link:hover { color: var(--gold) !important; }

.btn-gold {
  background: var(--gradient-gold);
  color: var(--black);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
  color: var(--black);
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?w=1600&q=80') center/cover no-repeat;
  filter: brightness(0.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 50%, transparent 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-line {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin-bottom: 2rem;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-info {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-info-item strong {
  display: block;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

.hero-info-item span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections */
section { padding: 110px 0; }

.section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

/* Services */
.service-card {
  background: var(--card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s;
  height: 100%;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--gold);
  margin-top: 1rem;
}

/* Barbers */
.barber-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.barber-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: grayscale(40%);
  transition: all 0.5s;
}

.barber-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.barber-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, var(--black), transparent);
}

.barber-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.barber-info span {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Gallery */
.gallery { background: var(--dark); }

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  filter: brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* Pricing table */
.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}

.price-table tr:hover { background: var(--card); }

.price-table td {
  padding: 1.25rem 1rem;
}

.price-table td:last-child {
  text-align: right;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.price-table td:first-child {
  color: var(--white);
  font-weight: 500;
}

.price-table .desc {
  font-size: 0.8rem;
  color: var(--text);
  display: block;
  margin-top: 0.25rem;
}

/* Testimonials */
.testimonial-card {
  background: var(--card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2.5rem;
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars { color: var(--gold); margin-bottom: 1rem; }

/* CTA */
.cta-section {
  background: var(--card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
}

/* Contact */
.contact-form {
  background: var(--card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 0;
  padding: 0.9rem 1.25rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: var(--dark);
  color: var(--white);
}

.contact-form .form-control::placeholder { color: var(--text); }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item .icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

/* Footer */
footer {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 4rem 0 2rem;
}

footer h5 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 1.5rem;
}

footer a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover { color: var(--gold); }

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero-overlay { background: linear-gradient(0deg, var(--black) 40%, transparent 100%); }
  .barber-card img { height: 300px; }
}

@media (max-width: 576px) {
  section { padding: 80px 0; }
  .cta-section { padding: 3rem 1.5rem; }
  .hero-info { flex-direction: column; gap: 1rem; }
}
