:root {
  --bg-deep: #0f1113;
  --bg-soft: #14181c;
  --sand: #efe5d2;
  --ink: #1f2429;
  --accent: #c9893d;
  --accent-2: #e6b86a;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background: radial-gradient(circle at 20% 15%, #1f252b 0%, #0d0f11 45%, #090a0b 100%);
  color: var(--sand);
  overflow-x: hidden;
}

.brand,
h1,
h2,
h3,
.section-title {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

.nav-glass {
  backdrop-filter: blur(10px);
  background: linear-gradient(to right, rgba(15, 17, 19, 0.92), rgba(15, 17, 19, 0.55));
  border-bottom: 1px solid rgba(239, 229, 210, 0.12);
}

.brand {
  font-size: 1.6rem;
  color: var(--accent-2);
}

.navbar .nav-link {
  color: #f6f0e3;
  font-weight: 600;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #a56a2b);
  color: #fff;
  border: 0;
  font-weight: 700;
}

.btn-accent:hover {
  background: linear-gradient(135deg, #d89a4d, #b8772d);
  color: #fff;
}

.hero {
  min-height: 100vh;
  position: relative;
  padding-top: 96px;
  background-image: url("https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=1500&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 9, 10, 0.92) 30%, rgba(8, 9, 10, 0.55) 100%);
}

.kicker {
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-card {
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(17, 20, 24, 0.82);
  border: 1px solid rgba(239, 229, 210, 0.15);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.28);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(239, 229, 210, 0.08);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(10, 11, 12, 0.9), rgba(16, 18, 20, 0.9));
}

.section-light {
  background: linear-gradient(180deg, #f2ebdd, #eadfcb);
  color: var(--ink);
}

.section-tag {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
}

.service-card,
.price-card {
  border-radius: 1rem;
  padding: 1.2rem;
  height: 100%;
}

.service-card {
  background: linear-gradient(145deg, #171a1e, #0f1114);
  border: 1px solid rgba(239, 229, 210, 0.12);
}

.service-card i {
  font-size: 1.6rem;
  color: var(--accent-2);
}

.service-card h3 {
  margin-top: 0.8rem;
}

.price-card {
  background: #ffffff;
  border: 1px solid #d8c7ac;
}

.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0.8rem 2rem rgba(112, 74, 28, 0.2);
  transform: translateY(-4px);
}

.price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: #7f4f20;
  margin-bottom: 0.2rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: saturate(0.9);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.form-control,
.form-select {
  border-radius: 0.75rem;
  border: 1px solid #c9b290;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(201, 137, 61, 0.22);
}

footer {
  background: #090a0b;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.bg-shape-1 {
  width: 260px;
  height: 260px;
  background: rgba(201, 137, 61, 0.16);
  top: 16%;
  left: -100px;
  filter: blur(8px);
}

.bg-shape-2 {
  width: 320px;
  height: 320px;
  background: rgba(230, 184, 106, 0.12);
  bottom: 6%;
  right: -120px;
  filter: blur(10px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.stagger-wrap > * {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
}

.stagger-wrap > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-wrap > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-wrap > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-wrap > *:nth-child(4) { animation-delay: 0.4s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 88vh;
  }

  .display-2 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }
}
