:root {
  --burgundy: #722f37;
  --burgundy-dark: #5a252c;
  --burgundy-light: #8b3a44;
  --cream: #f5e6d3;
  --cream-dark: #e8d5bc;
  --dark: #2c1810;
  --text: #6b5b4e;
  --white: #fffdf9;
  --gold-accent: #b8860b;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(114, 47, 55, 0.15);
}

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

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.15;
}

/* Navbar */
.navbar {
  padding: 1.25rem 0;
  transition: all 0.4s;
}

.navbar.scrolled {
  background: rgba(255, 253, 249, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(44, 24, 16, 0.06);
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark) !important;
  letter-spacing: 1px;
}

.navbar-brand em {
  font-style: italic;
  color: var(--burgundy);
}

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

.btn-burgundy {
  background: var(--burgundy);
  color: var(--cream);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.35s;
  box-shadow: 0 8px 25px rgba(114, 47, 55, 0.3);
}

.btn-burgundy:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  color: var(--cream);
  box-shadow: 0 12px 35px rgba(114, 47, 55, 0.4);
}

.btn-outline-burgundy {
  border: 2px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.35s;
}

.btn-outline-burgundy:hover {
  background: var(--burgundy);
  color: var(--cream);
}

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

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23722f37' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-ornament {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 200px;
  height: 200px;
  border: 2px solid var(--burgundy);
  border-radius: 50%;
  opacity: 0.1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}

.hero-badge::before,
.hero-badge::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--burgundy);
}

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

.hero h1 em {
  font-style: italic;
  color: var(--burgundy);
}

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

.hero-image-frame {
  position: relative;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--burgundy);
  border-radius: var(--radius);
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}

.hero-since {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  z-index: 2;
  text-align: center;
}

.hero-since strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  display: block;
  line-height: 1;
}

.hero-since span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}

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

/* Services */
.services { background: var(--white); }

.service-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s;
  height: 100%;
  border: 1px solid transparent;
}

.service-box:hover {
  background: white;
  border-color: var(--burgundy);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-box .icon {
  width: 70px;
  height: 70px;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.service-box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-box .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--burgundy);
  font-weight: 700;
  margin-top: 1rem;
}

/* Experience */
.experience {
  background: var(--burgundy);
  color: var(--cream);
}

.experience .section-heading,
.experience .section-label { color: var(--cream); }

.experience .section-label { opacity: 0.7; }

.exp-item {
  text-align: center;
  padding: 2rem 1rem;
}

.exp-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.exp-item .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* Barbers */
.barber-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s;
  text-align: center;
}

.barber-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.barber-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.barber-card-body { padding: 1.75rem; }

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

.barber-card .role {
  color: var(--burgundy);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Menu / Pricing */
.menu-section { background: var(--white); }

.menu-category {
  margin-bottom: 3rem;
}

.menu-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--cream-dark);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--cream-dark);
}

.menu-item .name {
  font-weight: 600;
  color: var(--dark);
}

.menu-item .desc {
  font-size: 0.85rem;
  color: var(--text);
  display: block;
  margin-top: 0.2rem;
}

.menu-item .dots {
  flex: 1;
  border-bottom: 1px dotted var(--cream-dark);
  margin: 0 1rem;
  min-width: 20px;
  align-self: flex-end;
  margin-bottom: 6px;
}

.menu-item .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--burgundy);
  white-space: nowrap;
}

/* Gallery */
.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;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(114, 47, 55, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Testimonials */
.testimonial-elegant {
  background: white;
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-elegant::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--burgundy);
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial-elegant .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* CTA */
.cta-elegant {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 5rem 3rem;
  color: var(--cream);
  text-align: center;
}

.cta-elegant h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

/* Contact */
.contact-elegant {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-elegant .form-control {
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  background: var(--cream);
}

.contact-elegant .form-control:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(114, 47, 55, 0.1);
  background: white;
}

/* Footer */
footer {
  background: var(--dark);
  color: rgba(245, 230, 211, 0.6);
  padding: 4rem 0 2rem;
}

footer h5 {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

footer a {
  color: rgba(245, 230, 211, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--cream);
}

.footer-brand em { color: var(--burgundy-light); font-style: italic; }

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero-image { height: 420px; }
  .hero-since { display: none; }
}

@media (max-width: 576px) {
  section { padding: 80px 0; }
  .cta-elegant { padding: 3rem 1.5rem; }
}
