:root {
  --primary: #b07d5e;
  --primary-light: #d4a88b;
  --primary-dark: #8a5f44;
  --secondary: #2d4a3b;
  --accent: #e8c8a8;
  --dark: #1a1a1a;
  --dark-bg: #111;
  --light: #f9f5f0;
  --gray: #6c757d;
  --font-mono: 'Cormorant Garamond', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow: 0 15px 40px rgba(0,0,0,.15);
  --shadow-lg: 0 30px 60px rgba(0,0,0,.25);
  --transition: .4s cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background: var(--light);
  color: #222;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-mono);
  font-weight: 600;
}

a { color: var(--primary); transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

.bg-primary { background: var(--primary) !important; }
.bg-dark { background: var(--dark-bg) !important; }
.text-primary { color: var(--primary) !important; }

.btn-primary {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #fff !important;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .75rem 2rem;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(176,125,94,.3);
}
.btn-primary:hover {
  background: transparent;
  color: var(--primary) !important;
  box-shadow: 0 8px 25px rgba(176,125,94,.4);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  border-radius: 50px;
  padding: .75rem 2rem;
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  background: rgba(17,17,17,.95) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: background var(--transition);
}
.navbar-brand img { height: 45px; }
.navbar .nav-link {
  color: rgba(255,255,255,.8) !important;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .5rem 1rem !important;
  position: relative;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.navbar .nav-link:hover::after { width: 60%; }
.navbar .nav-link:hover { color: var(--primary) !important; }
.navbar .contact-info a { color: rgba(255,255,255,.7); font-size: .9rem; margin-right: 1.5rem; }

.carousel-item {
  display: none;
  transition: transform 0.6s ease-in-out;
}
.carousel-item.active {
  display: block;
}

/* Hero / Slider */
.hero-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.7), rgba(0,0,0,.3));
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  max-width: 600px;
}

/* Carousel controls */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: 2px solid transparent;
}
.carousel-indicators .active {
  background: var(--primary);
  border-color: var(--primary);
  width: 14px;
  height: 14px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(0,0,0,.3);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

/* Sections */
section { padding: 6rem 0; }
.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Featured cards / services */
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card img { width: 100%; height: 260px; object-fit: cover; }
.service-card .card-body { padding: 2rem; }
.service-card h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.service-card .price { font-size: 1.8rem; color: var(--primary); font-weight: 700; }

/* Stats / numbers */
.stat-item h3 { font-size: 3rem; font-weight: 700; color: var(--primary); }
.stat-item p { font-size: 1.1rem; color: rgba(255,255,255,.8); }

/* Team */
.team-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 4px solid var(--accent);
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--primary);
  opacity: .15;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
}

/* Form */
.contact-form .form-control {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  transition: all var(--transition);
}
.contact-form .form-control:focus {
  background: rgba(255,255,255,.15);
  border-color: var(--primary);
  box-shadow: none;
  color: #fff;
}
.contact-form textarea.form-control { border-radius: 20px; resize: vertical; }
.contact-form .btn { width: 100%; }

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-bg);
  color: #fff;
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -10px 30px rgba(0,0,0,.3);
}
#cookie-banner .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
#cookie-banner p { margin: 0; }
#cookie-banner .btn { white-space: nowrap; }

/* Map */
.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* Notification */
.notification {
  position: fixed;
  top: 30px;
  right: 30px;
  background: var(--primary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  z-index: 99999;
  display: none;
  animation: slideInRight .5s ease;
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 999;
  display: none;
  transition: all var(--transition);
}
#back-to-top:hover { background: var(--primary-dark); transform: translateY(-5px); }

/* Footer */
.footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer a:hover { color: var(--primary); }
.footer h5 { color: #fff; margin-bottom: 1.5rem; font-family: var(--font-mono); }

/* Responsive */
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .section-title { font-size: 2rem; }
  .hero-slide { height: 80vh; min-height: 500px; }
  .navbar .contact-info { display: none; }
  #cookie-banner .container { flex-direction: column; text-align: center; }
}

/* Utility */
.bg-overlay-dark {
  position: relative;
  background-blend-mode: overlay;
}
.bg-overlay-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  pointer-events: none;
}
.z-index-2 { position: relative; z-index: 2; }