@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600&display=swap");

:root {
  --gold: #b08d57;
  --gold-2: #d4b978;
  --gold-3: #8c6d3f;
  --ink: #171310;
  --cream: #faf6ef;
  --wine: #5e2233;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  background: #faf6ef;
  color: #1c1814;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
section[id] {
  scroll-margin-top: 92px;
}
::selection {
  background: #b08d57;
  color: #fff;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f1eae0;
}
::-webkit-scrollbar-thumb {
  background: #c9b08a;
  border-radius: 8px;
  border: 2px solid #f1eae0;
}
::-webkit-scrollbar-thumb:hover {
  background: #b08d57;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track.fast {
  animation-duration: 22s;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}
.spin-slow {
  animation: spin-slow 16s linear infinite;
}
@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.float-y {
  animation: float-y 6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.pulse-dot {
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes shimmer {
  from {
    background-position: -200% 0;
  }
  to {
    background-position: 200% 0;
  }
}
.text-shimmer {
  background: linear-gradient(90deg, #8c6d3f, #ebd5a4, #8c6d3f);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5.5s linear infinite;
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide.active .hero-copy > * {
  animation: fade-in-up 0.85s ease both;
}
.hero-slide.active .hero-copy > *:nth-child(2) {
  animation-delay: 0.14s;
}
.hero-slide.active .hero-copy > *:nth-child(3) {
  animation-delay: 0.28s;
}
.hero-slide.active .hero-copy > *:nth-child(4) {
  animation-delay: 0.42s;
}

.accordion-item .accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item.open .accordion-body {
  max-height: 560px;
}
.accordion-chevron {
  transition: transform 0.35s ease;
}
.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}

.toast-wrap {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
  width: 100%;
  padding: 0 16px;
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: #171310;
  color: #faf6ef;
  border: 1px solid rgba(176, 141, 87, 0.55);
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 18px 40px rgba(23, 19, 16, 0.35);
  animation: toast-in 0.35s ease both;
  max-width: min(94vw, 500px);
}
.toast i {
  margin-top: 2px;
  color: #d4b978;
}
.toast.ok i {
  color: #7fc08a;
}
.toast.err {
  border-color: rgba(176, 65, 62, 0.75);
}
.toast.err i {
  color: #e08a87;
}
@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.toast.hide {
  animation: toast-out 0.3s ease both;
}
@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

.wheel {
  background: conic-gradient(
    #171310 0 30deg,
    #b08d57 30deg 60deg,
    #faf6ef 60deg 90deg,
    #5e2233 90deg 120deg,
    #171310 120deg 150deg,
    #b08d57 150deg 180deg,
    #faf6ef 180deg 210deg,
    #171310 210deg 240deg,
    #b08d57 240deg 270deg,
    #5e2233 270deg 300deg,
    #faf6ef 300deg 330deg,
    #171310 330deg 360deg
  );
}
.wheel-rot {
  transition: transform 4.6s cubic-bezier(0.12, 0.75, 0.18, 1);
}

.barcode {
  background: repeating-linear-gradient(
    90deg,
    #171310 0 2px,
    transparent 2px 5px,
    #171310 5px 6px,
    transparent 6px 11px,
    #171310 11px 14px,
    transparent 14px 17px
  );
}
.barcode-light {
  background: repeating-linear-gradient(
    90deg,
    #faf6ef 0 2px,
    transparent 2px 5px,
    #faf6ef 5px 6px,
    transparent 6px 11px,
    #faf6ef 11px 14px,
    transparent 14px 17px
  );
}
.loyalty-gold {
  background: linear-gradient(135deg, #8c6d3f, #d4b978 48%, #8c6d3f);
}
.loyalty-plat {
  background: linear-gradient(135deg, #57606c, #c9cfd8 48%, #57606c);
}
.loyalty-obs {
  background: linear-gradient(135deg, #0d0b09, #3b342c 50%, #0d0b09);
}

.field {
  width: 100%;
  background: #fff;
  border: 1px solid #e4daca;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  color: #1c1814;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  outline: none;
}
.field:focus {
  border-color: #b08d57;
  box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.14);
}
.field.invalid {
  border-color: #b0413e;
  box-shadow: 0 0 0 4px rgba(176, 65, 62, 0.12);
}
.field-error {
  display: none;
  color: #b0413e;
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 6px;
}
.field.invalid + .field-error,
.field-error.show {
  display: block;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin-slow 0.8s linear infinite;
  display: inline-block;
}

.range-gold {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    #b08d57 var(--val, 50%),
    #e9dfce var(--val, 50%)
  );
  outline: none;
}
.range-gold::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #171310;
  border: 3px solid #b08d57;
  cursor: pointer;
}
.range-gold::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #171310;
  border: 3px solid #b08d57;
  cursor: pointer;
  border-color: #b08d57;
}

.tab-active {
  background: #171310 !important;
  color: #faf6ef !important;
  border-color: #171310 !important;
}

.link-gold {
  color: #8c6d3f;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(176, 141, 87, 0.55);
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.link-gold:hover {
  color: #b08d57;
}

.card-lift {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1),
    box-shadow 0.4s;
}
.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(23, 19, 16, 0.28);
}

.frame-gold {
  position: relative;
}
.frame-gold::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 185, 120, 0.55);
  pointer-events: none;
  border-radius: inherit;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.6));
}
.ornament::after {
  background: linear-gradient(90deg, rgba(176, 141, 87, 0.6), transparent);
}
.diamond {
  width: 8px;
  height: 8px;
  background: #b08d57;
  transform: rotate(45deg);
  flex: none;
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #b08d57, transparent);
}

.dot-free {
  background: #3e7c4f;
}
.dot-busy {
  background: #b0413e;
}

.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}

.site-header {
  transition:
    box-shadow 0.3s,
    background 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 10px 30px -12px rgba(23, 19, 16, 0.18);
}

.plan-zone {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.plan-zone:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -12px rgba(23, 19, 16, 0.35);
}

.num {
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }
}
