/* =============================================================
   LUXE CLEAN — Главный CSS
   Палитра: постельные тона, золото, тёплый крем
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  /* Постельная палитра */
  --cream:        #F7F3EE;
  --blush:        #EDE0D4;
  --sand:         #D9C9B8;
  --taupe:        #B8A89A;
  --warm-gray:    #8C7B72;
  --deep:         #4A3F3A;

  /* Акцент — бронза/золото */
  --gold:         #C4A46B;
  --gold-light:   #DEC18C;
  --gold-dark:    #A08550;

  /* Нейтралы */
  --white:        #FDFAF7;
  --border:       rgba(184,168,154,0.35);
  --shadow-soft:  0 8px 40px rgba(74,63,58,0.10);
  --shadow-md:    0 16px 60px rgba(74,63,58,0.15);

  /* Типографика */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  /* Анимации */
  --ease-smooth:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:     0.2s;
  --dur-mid:      0.4s;
  --dur-slow:     0.7s;
}

/* ── Reset & Base ─────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--cream);
  color: var(--deep);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold-light); color: var(--deep); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Custom Scrollbar ─────────────────────────────────────── */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--taupe); }

/* ── Typography ───────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--deep);
}

.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Loader ───────────────────────────────────────────────── */

#page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Видимость управляется inline-стилем в base.html через класс html.page-loading */
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--deep);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* ── Cursor ───────────────────────────────────────────────── */

.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.15s var(--ease-smooth), opacity 0.2s;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.35s var(--ease-smooth), width 0.3s, height 0.3s, opacity 0.2s;
  transform: translate(-50%, -50%);
}

body.cursor-hover .cursor-ring { width: 60px; height: 60px; border-color: var(--gold-light); }
body.cursor-hover .cursor-dot { transform: translate(-50%, -50%) scale(1.5); }

@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Header / Navbar ──────────────────────────────────────── */

.navbar-luxe {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all var(--dur-mid) var(--ease-smooth);
  background: transparent;
}

.navbar-luxe.scrolled {
  padding: 0.8rem 0;
  background: rgba(247,243,238,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar-brand-luxe {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--deep) !important;
  letter-spacing: 0.05em;
  transition: color var(--dur-fast);
}

.navbar-brand-luxe span { color: var(--gold); }

.navbar-luxe .nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color var(--dur-fast);
}

.navbar-luxe .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left var(--dur-mid) var(--ease-smooth), right var(--dur-mid) var(--ease-smooth);
}

.navbar-luxe .nav-link:hover::after,
.navbar-luxe .nav-link.active::after { left: 1rem; right: 1rem; }

.phone-link {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--deep);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--dur-fast);
}

.phone-link i { color: var(--gold); font-size: 0.85rem; }
.phone-link:hover { color: var(--gold); }

/* Hamburger */
.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.35rem 0.5rem;
  background: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%234A3F3A' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ── Hero Section ─────────────────────────────────────────── */

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(196,164,107,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(217,201,184,0.30) 0%, transparent 60%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-decor-line {
  position: absolute;
  top: 0; bottom: 0;
  right: 42%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--sand) 30%, var(--sand) 70%, transparent);
  opacity: 0.6;
}

.hero-image-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.95);
  transform: scale(1.05);
  transition: transform 8s var(--ease-smooth);
}

.hero-image-wrap:hover img { transform: scale(1); }

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, transparent 40%);
}

.hero-content { position: relative; z-index: 1; padding-top: 6rem; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title { margin-bottom: 1.5rem; }

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 440px;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-badge {
  margin-top: 0;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-smooth) 1.2s forwards;
}

.hero-badge-item {
  text-align: center;
  padding-right: 1rem;
  border-right: 1px solid var(--border);
}

.hero-badge-item:last-child { border-right: none; }

.hero-badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-badge-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-indicator i { color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn-luxe {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-mid) var(--ease-smooth);
}

.btn-luxe::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform var(--dur-mid) var(--ease-smooth);
}

.btn-luxe:hover::before { transform: translateX(0); }

.btn-primary-luxe {
  background: var(--deep);
  color: var(--cream);
}

.btn-primary-luxe::before { background: var(--gold-dark); }
.btn-primary-luxe:hover { color: var(--cream); box-shadow: var(--shadow-soft); }

.btn-outline-luxe {
  background: transparent;
  color: var(--deep);
  border: 1px solid var(--deep);
}

.btn-outline-luxe::before { background: var(--deep); }
.btn-outline-luxe:hover { color: var(--cream); }

.btn-gold-luxe {
  background: var(--gold);
  color: var(--white);
}

.btn-gold-luxe::before { background: var(--gold-dark); }
.btn-gold-luxe:hover { color: var(--white); }

.btn-luxe span { position: relative; z-index: 1; }
.btn-luxe i { position: relative; z-index: 1; }

/* ── Section Anatomy ──────────────────────────────────────── */

.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

.section-header { margin-bottom: 4rem; }
.section-header .overline { margin-bottom: 0.75rem; }

.divider-gold {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.divider-gold.center { margin-left: auto; margin-right: auto; }

/* ── Services Grid ────────────────────────────────────────── */

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: transform var(--dur-mid) var(--ease-smooth), box-shadow var(--dur-mid) var(--ease-smooth);
  cursor: pointer;
}

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

.service-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--blush);
}

.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-smooth), filter var(--dur-slow);
  filter: saturate(0.7);
}

.service-card:hover .service-card-image img {
  transform: scale(1.07);
  filter: saturate(1);
}

.service-card-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--taupe);
}

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

.service-card-cat {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.875rem;
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}

.service-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--deep);
  transition: all var(--dur-fast) var(--ease-smooth);
}

.service-card:hover .service-arrow {
  background: var(--deep);
  color: var(--cream);
  border-color: var(--deep);
}

/* ── Category Filter ──────────────────────────────────────── */

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-smooth);
  border-radius: 100px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--deep);
  color: var(--cream);
  border-color: var(--deep);
}

/* ── Why Us Section ───────────────────────────────────────── */

.why-section { background: var(--blush); }

.advantage-item {
  padding: 2.5rem 2rem;
  border: 1px solid transparent;
  transition: all var(--dur-mid) var(--ease-smooth);
  position: relative;
}

.advantage-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-smooth);
}

.advantage-item:hover::before { opacity: 1; }
.advantage-item:hover { border-color: var(--border); box-shadow: var(--shadow-soft); }

.advantage-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all var(--dur-mid) var(--ease-smooth);
}

.advantage-item:hover .advantage-icon {
  background: var(--gold);
  color: var(--white);
}

.advantage-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.advantage-text { font-size: 0.875rem; color: var(--warm-gray); position: relative; z-index: 1; }

/* ── Reviews Carousel ─────────────────────────────────────── */

.reviews-section { background: var(--cream); overflow: hidden; }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  margin: 0.5rem;
}

.review-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--deep);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-author { display: flex; align-items: center; gap: 1rem; }

.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--taupe);
  flex-shrink: 0;
}

.review-name { font-size: 0.85rem; font-weight: 500; }
.review-label { font-size: 0.7rem; color: var(--taupe); letter-spacing: 0.08em; }

.review-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.25rem; }

/* Carousel controls */
.carousel-controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--deep);
  transition: all var(--dur-fast) var(--ease-smooth);
}

.carousel-btn:hover { background: var(--deep); color: var(--cream); border-color: var(--deep); }

/* ── Order Form ───────────────────────────────────────────── */

.order-section { background: var(--deep); }

.order-form-wrap {
  background: var(--cream);
  padding: 3rem;
}

.form-luxe .form-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
}

.form-luxe .form-control,
.form-luxe .form-select {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--deep);
  transition: border-color var(--dur-fast);
  box-shadow: none !important;
}

.form-luxe .form-control:focus,
.form-luxe .form-select:focus {
  border-color: var(--gold);
  background: transparent;
}

.form-luxe .form-control::placeholder { color: var(--sand); }

.form-luxe .form-control.is-invalid { border-color: #c0392b; }

.input-group-luxe { position: relative; }

.field-error {
  font-size: 0.7rem;
  color: #c0392b;
  margin-top: 0.25rem;
  display: none;
}

.field-error.visible { display: block; }

/* ── Contact Info ─────────────────────────────────────────── */

.contact-info-block { padding: 3rem 0; }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }

.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(196,164,107,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-item-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.25rem; }
.contact-item-value { font-size: 0.95rem; color: var(--cream); }

/* ── Service Detail ───────────────────────────────────────── */

.detail-hero {
  padding: 8rem 0 4rem;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}

.detail-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.detail-image-col {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.detail-image-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
}

.detail-image-placeholder {
  width: 100%; height: 100%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  color: var(--taupe);
}

.included-list { list-style: none; padding: 0; }

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.included-list li:last-child { border-bottom: none; }

.included-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.price-block {
  background: var(--blush);
  padding: 2rem;
  border-left: 3px solid var(--gold);
  margin-bottom: 2rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
}

/* ── Map ──────────────────────────────────────────────────── */

.map-wrap {
  height: 400px;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  filter: saturate(0.5) contrast(0.9);
  transition: filter var(--dur-mid);
}

.map-wrap:hover iframe { filter: saturate(0.8) contrast(1); }

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  background: var(--deep);
  color: rgba(247,243,238,0.7);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand span { color: var(--gold); }

.footer-tagline { font-size: 0.8rem; color: var(--taupe); letter-spacing: 0.1em; }

.footer-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(247,243,238,0.6);
  transition: color var(--dur-fast);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-divider { border-color: rgba(247,243,238,0.1); margin: 2rem 0 1.5rem; }

.footer-copy { font-size: 0.75rem; color: rgba(247,243,238,0.4); }

/* ── Modal Success ────────────────────────────────────────── */

.modal-luxe .modal-content {
  border: none;
  border-radius: 2px;
  background: var(--cream);
}

.modal-luxe .modal-header {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.modal-luxe .modal-body { padding: 2.5rem; text-align: center; }

.modal-luxe .modal-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  justify-content: center;
}

.success-icon {
  width: 72px; height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  font-size: 1.8rem;
}

.modal-title-luxe {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

/* ── Animations / Reveal ──────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-slow) var(--ease-smooth), transform var(--dur-slow) var(--ease-smooth);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Toast / Notification ─────────────────────────────────── */

.toast-luxe {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--deep);
  color: var(--cream);
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--gold);
  font-size: 0.85rem;
  z-index: 9000;
  transform: translateX(150%);
  transition: transform var(--dur-mid) var(--ease-smooth);
  max-width: 320px;
}

.toast-luxe.show { transform: translateX(0); }

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 991px) {
  .hero-image-wrap { display: none; }
  .hero-decor-line { display: none; }
  .hero-content { padding-top: 5rem; }
  .hero-badge { position: static; margin-top: 3rem; }
  .scroll-indicator { display: none; }
}

@media (max-width: 767px) {
  :root { font-size: 15px; }
  .section { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .order-form-wrap { padding: 2rem 1.5rem; }
  .detail-image-col { height: 280px; }
  .map-wrap { height: 280px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-luxe { width: 100%; justify-content: center; }
  .review-card { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .category-filters { gap: 0.4rem; }
  .filter-btn { font-size: 0.6rem; padding: 0.4rem 0.9rem; }
  .display-title { font-size: 2.4rem; }
}

/* ── Utility ──────────────────────────────────────────────── */

.text-gold { color: var(--gold); }
.text-taupe { color: var(--taupe); }
.text-cream { color: var(--cream); }
.bg-cream { background-color: var(--cream); }
.bg-blush { background-color: var(--blush); }
.bg-deep { background-color: var(--deep); }

.border-gold { border-color: var(--gold) !important; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════════
   КНОПКА «ПОЗВОНИТЬ» — пульсирующая, переливающаяся
   ══════════════════════════════════════════════════════════ */

.btn-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  text-decoration: none;
  overflow: visible;

  /* Переливающийся градиент */
  background: linear-gradient(
    270deg,
    #c4a46b,
    #e8cc94,
    #a08550,
    #ddb96e,
    #c4a46b
  );
  background-size: 300% 100%;
  animation: callShimmer 3s ease infinite;

  /* Текст */
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  /* Тень с пульсацией */
  box-shadow: 0 0 0 0 rgba(196, 164, 107, 0.5);
  transition: transform 0.2s var(--ease-smooth),
              box-shadow 0.2s var(--ease-smooth);
}

/* Переливание градиента */
@keyframes callShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Иконка — покачивается */
.btn-call__icon {
  position: relative;
  font-size: 0.8rem;
  animation: callRing 2.5s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes callRing {
  0%, 100%   { transform: rotate(0deg); }
  5%         { transform: rotate(15deg); }
  10%        { transform: rotate(-12deg); }
  15%        { transform: rotate(10deg); }
  20%        { transform: rotate(-8deg); }
  25%        { transform: rotate(0deg); }
}

/* Волны-рипплы вокруг кнопки */
.btn-call__ripple {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 2px solid rgba(196, 164, 107, 0.6);
  animation: callRipple 2s ease-out infinite;
  pointer-events: none;
}

.btn-call__ripple--delay {
  animation-delay: 1s;
}

@keyframes callRipple {
  0%   { transform: scale(1);    opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Блик при наведении */
.btn-call::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}

.btn-call:hover::after {
  animation: callGlare 0.5s ease forwards;
}

@keyframes callGlare {
  0%   { left: -60%; opacity: 1; }
  100% { left: 120%;  opacity: 0; }
}

.btn-call:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(196, 164, 107, 0.45);
  color: #fff;
}

.btn-call:active {
  transform: translateY(0) scale(0.98);
}

.btn-call__text {
  position: relative;
  z-index: 1;
}
