:root {
  --brand: #b46a4d;
  --brand-soft: #d8b48a;
  --deep: #14110f;
  --surface: #211a17;
  --surface-2: #2b221e;
  --ink: #f3eadf;
  --muted: #b7a797;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(180, 106, 77, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(216, 180, 138, 0.1), transparent 24%),
    linear-gradient(180deg, #171210 0%, #14110f 100%);
  color: var(--ink);
  overflow-x: hidden;
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(180deg, #1a1411, #14110f);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s ease;
}

#loader.loaded {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--brand);
  animation: spin 0.9s linear infinite;
  box-shadow: 0 0 30px rgba(180, 106, 77, 0.22);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.glass-header {
  background: rgba(20, 17, 15, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  color: #130e0c;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 18px 45px rgba(180, 106, 77, 0.22);
}

.btn-brand:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.link-hover {
  position: relative;
}

.link-hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.25s ease;
}

.link-hover:hover::after,
.link-hover.active::after {
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(20, 17, 15, 0.88) 0%, rgba(20, 17, 15, 0.55) 42%, rgba(20, 17, 15, 0.18) 100%);
}

.panel {
  background: linear-gradient(180deg, rgba(33, 26, 23, 0.96), rgba(23, 18, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.metric-card,
.review-card,
.faq-item {
  background: linear-gradient(180deg, rgba(38, 30, 26, 0.96), rgba(23, 18, 16, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.badge-glow {
  box-shadow: 0 0 24px rgba(180, 106, 77, 0.22);
}

#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -200px;
  z-index: 9990;
  transition: bottom 0.45s ease;
}

#cookie-banner.show {
  bottom: 0;
}

.faq-answer {
  transition: all 0.25s ease;
}

.review-stars {
  letter-spacing: 0.12rem;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.45) !important;
}

.swiper-pagination-bullet-active {
  background: var(--brand) !important;
}

.map-frame {
  filter: grayscale(0.15) contrast(1.05);
}

.section-wash {
  background:
    linear-gradient(180deg, rgba(216, 180, 138, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero-shell {
  position: relative;
  overflow: hidden;
}

.hero-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(216, 180, 138, 0.14), transparent 18%),
    radial-gradient(circle at 80% 10%, rgba(180, 106, 77, 0.18), transparent 24%);
  pointer-events: none;
}

.hero-card {
  background: linear-gradient(180deg, rgba(33, 26, 23, 0.92), rgba(20, 17, 15, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.grain-line {
  position: relative;
}

.grain-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.75rem;
  width: 5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.process-step {
  position: relative;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(216, 180, 138, 0.12);
  font-weight: 800;
}

.cut-panel {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 93% 100%, 0 100%);
}
