/* Вариант 3: Тёплый песок — уютный персиково-песочный стиль */

html[data-site-theme="sand"] {
  --brand-primary: #c9956a;
  --brand-accent: #d4a574;
  --brand-bg: #faf6f0;
  --brand-dark: #3d3429;
  --brand-muted: #8a7b6a;
  --brand-radius: 50px;
  --text-line: 1.75;
  --card-radius: 16px;
  --card-shadow: 0 4px 20px rgba(201, 149, 106, 0.1);
  --card-shadow-hover: 0 10px 32px rgba(201, 149, 106, 0.18);
}

html[data-site-theme="sand"] body {
  background-color: #fffcf8;
}

/* Шапка */
html[data-site-theme="sand"] .navbar {
  background: rgba(255, 252, 248, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(201, 149, 106, 0.08);
}

html[data-site-theme="sand"] .navbar-brand,
html[data-site-theme="sand"] .site-brand__text {
  color: var(--brand-primary) !important;
  font-size: 1.125rem;
}

html[data-site-theme="sand"] .nav-link {
  color: var(--brand-muted);
  transition: color 0.25s ease;
}

html[data-site-theme="sand"] .nav-link:hover {
  color: var(--brand-primary);
}

html[data-site-theme="sand"] .navbar .btn-brand {
  background: linear-gradient(135deg, #d4a574, #c9956a);
  border: none;
  box-shadow: 0 4px 16px rgba(201, 149, 106, 0.35);
}

html[data-site-theme="sand"] .navbar .btn-brand:hover {
  background: linear-gradient(135deg, #c9956a, #b8845a);
}

/* Hero */
html[data-site-theme="sand"] .hero-section {
  background: linear-gradient(180deg, #faf6f0 0%, #fffcf8 100%);
  padding: 4rem 0;
  position: relative;
}

html[data-site-theme="sand"] .hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

html[data-site-theme="sand"] .hero-photo {
  border-radius: 20px;
  box-shadow: var(--card-shadow-hover);
}

html[data-site-theme="sand"] .hero-title {
  color: var(--brand-dark);
}

html[data-site-theme="sand"] .btn-brand {
  background: linear-gradient(135deg, #d4a574, #c9956a);
  border: none;
  box-shadow: 0 4px 18px rgba(201, 149, 106, 0.35);
}

html[data-site-theme="sand"] .btn-brand:hover {
  background: linear-gradient(135deg, #c9956a, #b8845a);
}

html[data-site-theme="sand"] .btn-outline-brand {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  border-radius: var(--card-radius);
}

html[data-site-theme="sand"] .btn-outline-brand:hover {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

/* Карточки */
html[data-site-theme="sand"] .format-card,
html[data-site-theme="sand"] .service-card,
html[data-site-theme="sand"] .review-card {
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

html[data-site-theme="sand"] .format-card:hover,
html[data-site-theme="sand"] .service-card:hover,
html[data-site-theme="sand"] .review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

html[data-site-theme="sand"] .format-card-title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--brand-dark);
}

html[data-site-theme="sand"] .service-price {
  font-size: 1.3125rem;
  color: var(--brand-primary);
  font-weight: 700;
}

html[data-site-theme="sand"] .service-card {
  padding: 1.75rem !important;
}

html[data-site-theme="sand"] .service-card-pricing {
  border-top-color: rgba(201, 149, 106, 0.15);
}

/* Секции */
html[data-site-theme="sand"] .section-cream {
  background-color: var(--brand-bg);
}

html[data-site-theme="sand"] .section-title {
  color: var(--brand-dark);
}

html[data-site-theme="sand"] .about-photo-wrap {
  box-shadow: 0 10px 36px rgba(201, 149, 106, 0.22);
  outline: 3px solid rgba(212, 165, 116, 0.25);
  outline-offset: 5px;
}

html[data-site-theme="sand"] .about-stat {
  background: #fff;
  border: 1px solid rgba(201, 149, 106, 0.12);
}

html[data-site-theme="sand"] .about-stat__icon {
  color: var(--brand-primary);
}

html[data-site-theme="sand"] .about-highlight {
  border-left-color: var(--brand-primary);
  background: #fff;
  border-radius: var(--card-radius);
}

html[data-site-theme="sand"] .about-block {
  border-radius: var(--card-radius);
  border: 1px solid rgba(201, 149, 106, 0.08);
}

html[data-site-theme="sand"] .about-quote {
  border-left-color: var(--brand-primary);
  background: #fff;
}

html[data-site-theme="sand"] .step-number {
  background: linear-gradient(135deg, #d4a574, #c9956a);
}

html[data-site-theme="sand"] .problem-accordion .accordion-button:not(.collapsed) {
  background-color: var(--brand-bg);
}

html[data-site-theme="sand"] .booking-section {
  background-image: linear-gradient(rgba(250, 246, 240, 0.95), rgba(250, 246, 240, 0.95)),
    url('/static/images/tild3730-6162-4161-b666-363865313539__form_bg___filter.jpg');
}

html[data-site-theme="sand"] .booking-section .card {
  border-radius: var(--card-radius);
}

html[data-site-theme="sand"] .faq-slide-card {
  border-radius: var(--card-radius);
}

html[data-site-theme="sand"] .faq-carousel-indicators .active {
  background-color: var(--brand-primary);
}

html[data-site-theme="sand"] .faq-edge-nav {
  border-color: rgba(201, 149, 106, 0.45);
  color: var(--brand-primary);
}
