/* ============================================================
   TESTIMONIALS (Continuous Infinite Luxury Ribbon)
   ============================================================ */
.testimonials.dark-block {
  border-radius: var(--radius-block);
  margin-top: 0;
  overflow: hidden;
  position: relative;
  padding-block: clamp(34px, 4vw, 54px) clamp(44px, 5.5vw, 70px);
}

.testimonials-header {
  text-align: center;
  max-width: 44ch;
  margin: 0 auto clamp(16px, 2.2vw, 28px);
}
.testimonials-header .eyebrow {
  margin-bottom: 6px;
}
.testimonials-title {
  font-size: clamp(30px, 4.2vw, 50px);
  margin-bottom: 0;
  line-height: 1.15;
}

/* Infinite Marquee Container with Edge Fades */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-block: 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeSlide 30s linear infinite;
  will-change: transform;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Compact Luxury Frosted Glass Testimonial Pill Card */
.t-pill {
  width: 320px;
  max-width: 82vw;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 36px -16px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.35),
              inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.t-pill:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.07) 100%);
  border-color: rgba(226, 194, 145, 0.75);
  box-shadow: 0 22px 48px -16px rgba(0, 0, 0, 0.75),
              0 0 22px rgba(194, 160, 119, 0.28),
              inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.t-pill-stars {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.45));
}

.t-pill-quote {
  font-size: 13.5px;
  line-height: 1.55;
  color: #f3efe8;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-pill-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.t-avatar-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(194, 160, 119, 0.85), rgba(138, 92, 26, 0.95));
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}
.t-name {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    overflow-x: auto;
  }
}

/* ============================================================
   GIFT CARD
   ============================================================ */
.gift {
  position: relative;
  background: var(--beige-2);
  padding-block: clamp(70px, 9vw, 120px);
}
.squiggle-gift { left: -34px; top: 12%; width: 120px; height: 380px; }
.gift-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.gift-copy h2 { font-size: clamp(38px, 5.4vw, 64px); margin-bottom: 22px; }
.gift-copy p {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 28px;
}
.gift-copy strong { color: var(--ink); font-weight: 500; }
.gift-media { position: relative; }
.arch-gift { aspect-ratio: 4 / 4.9; max-width: 330px; margin-inline: auto; }
.sparkle-e { width: 22px; top: -18px; left: 6%; }

