/* ============================================================
   TOPAZERY FINAL EXHIBITION — Closing Month Styles
   Scarcity badges, urgency elements, enhanced CTAs
   ============================================================ */

/* ============ SCARCITY BADGE — Product Cards ============ */
.product-scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 6px;
  color: #d4af37;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Merriweather", Georgia, serif;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.product-scarcity-badge svg {
  color: #d4af37;
  opacity: 0.8;
}

/* ============ CLOSING NOTE — Below Add-to-Cart ============ */
.product-closing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  color: #666;
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: center;
}
.product-closing-note svg {
  color: #d4af37;
  flex-shrink: 0;
}

/* ============ GRID ITEM SCARCITY — Browse All Page ============ */
.listgrid__item .scarcity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.4rem 0.6rem;
  background: linear-gradient(transparent, rgba(26, 26, 46, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.listgrid__item .scarcity-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #d4af37;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Merriweather", Georgia, serif;
}
.listgrid__item .scarcity-tag svg {
  width: 10px;
  height: 10px;
}

/* ============ ENHANCED CTA BUTTON — PULSE ON PRODUCT PAGE ============ */
.btn-add-cart {
  position: relative;
  overflow: hidden;
}
.btn-add-cart::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: ctaShimmer 3s ease-in-out infinite;
}
@keyframes ctaShimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* ============ TRENDING BADGE — FINAL COLLECTION LABEL ============ */
.trending-badge.final {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #d4af37 !important;
}

/* ============ FINAL EXHIBITION LANDING PAGE ============ */
.final-exhibition-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 1rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.final-exhibition-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
}
.final-exhibition-hero > * {
  position: relative;
  z-index: 1;
}
.final-exhibition-hero .exhibition-icon {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.final-exhibition-hero h1 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.final-exhibition-hero h1 em {
  color: #d4af37;
  font-style: normal;
}
.final-exhibition-hero .exhibition-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.final-exhibition-hero .exhibition-countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: #d4af37;
  font-family: "Merriweather", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
}
.final-exhibition-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 1rem;
  flex-wrap: wrap;
}
.final-exhibition-stat {
  text-align: center;
}
.final-exhibition-stat .stat-number {
  display: block;
  font-family: "Merriweather", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
}
.final-exhibition-stat .stat-label {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.25rem;
}

/* Collection filter chips */
.collection-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1rem;
  margin-bottom: 1rem;
}
.filter-chip {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: #555;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter-chip:hover,
.filter-chip.active {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 50%, #d4af37 100%);
  color: #1a1a2e;
  border-color: #d4af37;
}

@media screen and (max-width: 768px) {
  .final-exhibition-hero h1 {
    font-size: 1.8rem;
  }
  .final-exhibition-stats {
    gap: 1.5rem;
  }
}

/* ============ PRODUCT IMAGE LIGHTBOX ============ */
.tz-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  cursor: zoom-out;
}
.tz-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.tz-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}
.tz-lightbox.open .tz-lightbox-img {
  transform: scale(1);
}
.tz-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.8);
  color: #d4af37;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tz-lightbox-close:hover {
  background: #d4af37;
  color: #1a1a2e;
  transform: scale(1.1);
}
.tz-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.7);
  color: #d4af37;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tz-lightbox-nav:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}
.tz-lightbox-prev {
  left: 1.5rem;
}
.tz-lightbox-next {
  right: 1.5rem;
}
.tz-lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .tz-lightbox-nav {
    display: none;
  }
  .tz-lightbox-img {
    max-width: 95vw;
    max-height: 80vh;
  }
}

/* ============ GALLERY THUMBNAIL STRIP ============ */
.tz-gallery-thumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
  margin: 0 auto;
  max-width: 700px;
}
.tz-gallery-thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.tz-gallery-thumbs img:hover,
.tz-gallery-thumbs img.active {
  border-color: #d4af37;
  opacity: 1;
  transform: scale(1.08);
}

/* ============ NEWSLETTER SIGNUP — FAREWELL EDITION ============ */
.farewell-newsletter {
  background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  margin: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.farewell-newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.farewell-newsletter > * {
  position: relative;
  z-index: 2;
}
.farewell-newsletter-icon {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.farewell-newsletter h3 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
}
.farewell-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.farewell-newsletter-form {
  display: flex;
  max-width: 450px;
  margin: 0 auto;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.farewell-newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  outline: none;
}
.farewell-newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.farewell-newsletter-form button {
  padding: 0.9rem 1.75rem;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  border: 0;
  color: #1a1a2e;
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.farewell-newsletter-form button:hover {
  background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 100%);
}
.farewell-newsletter-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.75rem;
}
@media (max-width: 600px) {
  .farewell-newsletter-form {
    flex-direction: column;
    border-radius: 12px;
  }
  .farewell-newsletter-form input[type="email"],
  .farewell-newsletter-form button {
    border-radius: 0;
    text-align: center;
  }
}

/* ============ FAREWELL SECTION — SCROLL + FULL-SIZE PHOTO ============ */
.farewell-section {
  max-width: 1100px;
  margin: 3rem auto 2rem;
  padding: 0 1rem;
}

/* --- Two-column layout: message left, photo right --- */
.farewell-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

/* Jan avatar header above the scroll */
.farewell-jan-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.farewell-jan-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.farewell-jan-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.farewell-jan-intro {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.farewell-jan-name {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: #d4af37;
  letter-spacing: 0.02em;
}
.farewell-jan-title {
  font-family: "Open Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #8b7d6b;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Right column: full-size farewell photo */
.farewell-layout-photo {
  position: sticky;
  top: 2rem;
}
.farewell-photo-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(212, 175, 55, 0.15),
    inset 0 0 30px rgba(212, 175, 55, 0.04);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s ease,
    border-color 0.6s ease;
}
.farewell-photo-frame::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.6s ease;
}
.farewell-photo-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(212, 175, 55, 0.3),
    0 0 40px rgba(212, 175, 55, 0.06);
}
.farewell-photo-frame:hover::before {
  border-color: rgba(212, 175, 55, 0.3);
}
.farewell-photo-frame img {
  width: 100%;
  display: block;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.farewell-photo-frame:hover img {
  transform: scale(1.03);
}
.farewell-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1rem 1.25rem;
  background: linear-gradient(
    to top,
    rgba(26, 26, 46, 0.88) 0%,
    rgba(26, 26, 46, 0.4) 60%,
    transparent 100%
  );
  font-family: "Merriweather", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: #f5e6a3;
  text-align: center;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .farewell-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .farewell-layout-photo {
    position: static;
    order: -1;
  }
}

/* --- Legacy dual portrait header (kept for farewell.html) --- */
.farewell-portraits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.farewell-portrait-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  max-width: 320px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(212, 175, 55, 0.2);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s ease;
}
.farewell-portrait-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(212, 175, 55, 0.35);
}
.farewell-portrait-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.farewell-portrait-frame:hover img {
  transform: scale(1.04);
}
.farewell-portrait-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 0.85rem;
  background: linear-gradient(
    to top,
    rgba(26, 26, 46, 0.85) 0%,
    transparent 100%
  );
  font-family: "Merriweather", Georgia, serif;
  font-size: 0.9rem;
  font-style: italic;
  color: #f5e6a3;
  text-align: center;
  letter-spacing: 0.04em;
}

/* Heart connector between portraits */
.farewell-portrait-heart {
  flex-shrink: 0;
  color: #d4af37;
  opacity: 0.5;
  animation: heartPulse 2.5s ease-in-out infinite;
}
@keyframes heartPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.75;
  }
}

/* --- Scroll Roll Ends (Decorative Cylinders) --- */
.scroll-roll {
  position: relative;
  z-index: 2;
  margin: 0 -0.5rem;
}
.scroll-roll-bar {
  height: 22px;
  background: linear-gradient(
    180deg,
    #e8d5a0 0%,
    #d4af37 15%,
    #f5e6a3 35%,
    #d4af37 55%,
    #c49a2c 75%,
    #b8860b 100%
  );
  border-radius: 11px;
  position: relative;
  box-shadow:
    0 2px 8px rgba(139, 105, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}
.scroll-roll-knob {
  position: absolute;
  top: -4px;
  width: 18px;
  height: 30px;
  background: linear-gradient(180deg, #f5e6a3 0%, #d4af37 40%, #b8860b 100%);
  border-radius: 4px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.scroll-roll-knob-left {
  left: 12px;
}
.scroll-roll-knob-right {
  right: 12px;
}

.scroll-roll-shadow {
  height: 14px;
  background: linear-gradient(
    180deg,
    rgba(120, 95, 40, 0.15) 0%,
    rgba(120, 95, 40, 0.04) 60%,
    transparent 100%
  );
  margin: 0 14px;
  border-radius: 0 0 50% 50%;
}
.scroll-roll-shadow-bottom {
  background: linear-gradient(
    0deg,
    rgba(120, 95, 40, 0.15) 0%,
    rgba(120, 95, 40, 0.04) 60%,
    transparent 100%
  );
  border-radius: 50% 50% 0 0;
  margin-bottom: 0;
}
.scroll-roll-top .scroll-roll-shadow {
  margin-top: 0;
}

/* --- Parchment Scroll Body --- */
.farewell-scroll {
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
.farewell-scroll-inner {
  position: relative;
  background: linear-gradient(
    180deg,
    #faf6ef 0%,
    #f7f2e8 5%,
    #f5f0e4 50%,
    #f2eddf 95%,
    #ebe5d5 100%
  );
  padding: 2.5rem 3.5rem 2.5rem;
  box-shadow:
    4px 0 12px rgba(139, 105, 20, 0.06),
    -4px 0 12px rgba(139, 105, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(181, 158, 108, 0.2);
  border-right: 1px solid rgba(181, 158, 108, 0.2);
}

/* Parchment texture: subtle radial warm stain */
.farewell-scroll-inner::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    ellipse,
    rgba(212, 175, 55, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}
/* Left-side aged edge */
.farewell-scroll-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(
    90deg,
    rgba(181, 158, 108, 0.06) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* Date stamp */
.farewell-scroll-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Open Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #8b7d6b;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.farewell-scroll-date svg {
  color: #b5a07a;
}

/* Handwritten-style title */
.farewell-scroll-title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
  font-style: italic;
  color: #3a322a;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

/* Gold flourish divider */
.farewell-scroll-flourish {
  display: block;
  margin: 0 auto 1.75rem;
  width: 180px;
  height: 24px;
  opacity: 0.5;
}

/* Letter body */
.farewell-scroll-salutation {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #5a4d3f;
  margin-bottom: 1.25rem;
}
.farewell-scroll-body p {
  font-family: "Merriweather", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 2;
  color: #4a4238;
  margin-bottom: 1.25rem;
  text-indent: 1.5em;
}

/* Signature area */
.farewell-scroll-signature {
  border-top: 1px solid rgba(181, 158, 108, 0.2);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.farewell-scroll-sign-off {
  font-family: "Merriweather", Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: #5a4d3f;
  margin-bottom: 0.4rem;
}
.farewell-scroll-name {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.6rem;
  color: #3a322a;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}
.farewell-scroll-role {
  font-family: "Open Sans", sans-serif;
  font-size: 0.75rem;
  color: #8b7d6b;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

/* --- By the Numbers Grid --- */
.farewell-numbers {
  margin-top: 2.5rem;
  text-align: center;
}
.farewell-numbers-title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: #5a4d3f;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.farewell-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.farewell-number-card {
  background: linear-gradient(135deg, #faf6ef 0%, #f5f0e4 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 1.5rem 0.75rem;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
.farewell-number-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 12px 32px rgba(139, 105, 20, 0.12),
    0 0 0 1px rgba(212, 175, 55, 0.1);
}
.farewell-number-value {
  display: block;
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  text-shadow: 0 1px 3px rgba(212, 175, 55, 0.15);
}
.farewell-number-label {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #8b7d6b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

/* Read full farewell link */
.farewell-scroll-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 2rem auto 0;
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  width: auto;
  text-align: center;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}
.farewell-scroll-link:hover {
  color: #fff;
  text-decoration: none;
  gap: 0.7rem;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}
.farewell-scroll-link svg {
  transition: transform 0.3s ease;
  stroke: #fff;
}
.farewell-scroll-link:hover svg {
  transform: translateX(3px);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .farewell-portraits {
    gap: 1rem;
  }
  .farewell-portrait-frame img {
    height: 220px;
  }
  .farewell-portrait-heart svg {
    width: 24px;
    height: 24px;
  }
  .farewell-scroll-inner {
    padding: 2rem 1.5rem 1.5rem;
  }
  .farewell-scroll-title {
    font-size: 1.4rem;
  }
  .farewell-scroll-body p {
    font-size: 0.88rem;
    line-height: 1.85;
  }
  .farewell-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .farewell-number-value {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .farewell-section {
    padding: 0 0.5rem;
  }
  .farewell-portraits {
    flex-direction: column;
    gap: 0.75rem;
  }
  .farewell-portrait-frame {
    max-width: 100%;
  }
  .farewell-portrait-frame img {
    height: 200px;
  }
  .farewell-portrait-heart {
    transform: rotate(90deg);
  }
  .farewell-scroll-inner {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .farewell-scroll-title {
    font-size: 1.3rem;
  }
  .farewell-number-value {
    font-size: 1.3rem;
  }
  .farewell-numbers-grid {
    gap: 0.75rem;
  }
  .scroll-roll-bar {
    height: 18px;
  }
  .scroll-roll-knob {
    height: 26px;
    width: 14px;
    top: -4px;
  }
}

/* ============ SCROLL-TRIGGERED REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.revealed > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-stagger.revealed > *:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal-stagger.revealed > *:nth-child(3) {
  transition-delay: 0.19s;
}
.reveal-stagger.revealed > *:nth-child(4) {
  transition-delay: 0.26s;
}
.reveal-stagger.revealed > *:nth-child(5) {
  transition-delay: 0.33s;
}

/* ============ GOLDEN SPARKLE PARTICLES ============ */
.sparkle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.7;
}

/* ============ ENHANCED CARD HOVER EFFECTS ============ */
.luxury-category-card {
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.luxury-category-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(212, 175, 55, 0.15);
}
.luxury-category-card .luxury-card-image img {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.luxury-category-card:hover .luxury-card-image img {
  transform: scale(1.06);
}

/* ============ ENHANCED PERSONA CARD HOVER ============ */
.persona-card {
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease;
}
.persona-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(212, 175, 55, 0.2);
}
.persona-card:hover .persona-icon svg {
  color: #d4af37;
  transition: color 0.4s ease;
}

/* ============ LUXURY SECTION HEADER REFINED ============ */
.luxury-section-header h2 {
  position: relative;
}
.luxury-section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 0.75rem auto 0;
  border-radius: 1px;
}

/* ============ SMOOTH CTA SHIMMER ============ */
.luxury-hero-cta {
  position: relative;
  overflow: hidden;
}
.luxury-hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: ctaBtnShimmer 4s ease-in-out infinite;
}
@keyframes ctaBtnShimmer {
  0%,
  100% {
    left: -100%;
  }
  50% {
    left: 120%;
  }
}

/* ============ BACK-TO-TOP WITH SCROLL PROGRESS RING ============ */
.lux-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%) !important;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  padding: 0;
}
.lux-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lux-to-top:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 36px rgba(212, 175, 55, 0.4);
}

.lux-to-top-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  transform: rotate(-90deg);
}
.lux-to-top-progress .track {
  fill: none;
  stroke: rgba(212, 175, 55, 0.15);
  stroke-width: 3;
}
.lux-to-top-progress .fill {
  fill: none;
  stroke: #d4af37;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transition: stroke-dashoffset 0.15s ease;
}

.lux-to-top-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
}
.lux-to-top-icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  .lux-to-top {
    width: 48px !important;
    height: 48px !important;
  }
  .lux-to-top-progress {
    width: 48px;
    height: 48px;
  }
  .lux-to-top-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ============ FAREWELL BANNER (replaces newsletter) ============ */
.farewell-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.farewell-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.farewell-banner > * {
  position: relative;
  z-index: 2;
}
.farewell-banner-icon {
  color: #d4af37;
  display: flex;
}
.farewell-banner-icon svg {
  width: 32px;
  height: 32px;
}
.farewell-banner-text {
  flex: 1;
  min-width: 200px;
}
.farewell-banner-text h3 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.25rem;
}
.farewell-banner-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}
.farewell-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #1a1a2e !important;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.farewell-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  text-decoration: none;
}
@media (max-width: 600px) {
  .farewell-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

/* ============ ARTISAN CRAFT SHOWCASE — Decorative SVGs ============ */
.craft-showcase {
  margin: 2rem 0 0.5rem;
}
.craft-showcase-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}
.craft-svg {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
  animation: craftFloat 5s ease-in-out infinite;
}
.craft-svg svg {
  width: 100%;
  height: 100%;
}
.craft-svg-right {
  animation-delay: -2.5s;
}
.craft-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.craft-label-tagline {
  font-family: "Merriweather", Georgia, serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.craft-label-text {
  font-size: 0.75rem;
  color: #8b7d6b;
  font-style: italic;
}
@keyframes craftFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@media (max-width: 600px) {
  .craft-showcase-inner {
    gap: 1rem;
  }
  .craft-svg {
    width: 52px;
    height: 52px;
  }
  .craft-label-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }
}

/* ============ ENHANCED TRUST BAR — Closing Sale Polish ============ */
.luxury-hero .luxury-trust-bar {
  width: 100%;
  margin: 2rem 0 0;
  border-radius: 0;
  border: none;
  border-top: 1.5px solid rgba(212, 175, 55, 0.25);
  background: linear-gradient(180deg, #fdfaf3 0%, #f5f0e4 100%);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 0 1px rgba(212, 175, 55, 0.1);
}
.luxury-hero .luxury-trust-item {
  border-right: 1px solid rgba(212, 175, 55, 0.18);
}
.luxury-hero .luxury-trust-item:last-child {
  border-right: none;
}
.luxury-hero .luxury-trust-icon {
  filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.25));
}
.luxury-hero .luxury-trust-item:hover .luxury-trust-icon {
  filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.4));
}
.luxury-hero .luxury-trust-sublabel {
  font-size: 0.78rem;
  color: #998c7a;
  font-style: italic;
}

/* ============ CLOSING BANNER ============ */
.closing-banner {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #1a1a2e 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
  padding: 0.75rem 1rem;
  z-index: 1100;
  overflow: hidden;
}
.closing-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.08),
    transparent
  );
  animation: bannerShimmer 4s ease-in-out infinite;
}
.closing-banner::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.6),
    transparent
  );
}
@keyframes bannerShimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.closing-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.closing-banner-content {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.closing-banner-icon {
  color: #d4af37;
  font-size: 1.1rem;
  animation: iconPulse 3s ease-in-out infinite;
}
.closing-banner-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  text-align: center;
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.5;
}
.closing-banner-text strong {
  color: #d4af37;
  letter-spacing: 0.03em;
}
.closing-banner-pieces {
  color: rgba(255, 255, 255, 0.7);
}
.closing-banner-cta {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 50%, #d4af37 100%);
  background-size: 200% 100%;
  color: #1a1a2e;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-position 0.6s ease;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}
.closing-banner-cta:hover {
  transform: scale(1.06) translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  background-position: 100% 0;
}
.closing-banner-countdown {
  color: #d4af37;
  font-family: "Merriweather", Georgia, serif;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
  letter-spacing: 0.02em;
}
.closing-banner-dismiss {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  z-index: 2;
  transition: color 0.2s ease;
}
.closing-banner-dismiss:hover {
  color: #fff;
}
.closing-banner.dismissed {
  display: none;
}
@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}
@media screen and (max-width: 600px) {
  .closing-banner {
    padding: 0.6rem 2rem 0.6rem 0.75rem;
  }
  .closing-banner-text {
    font-size: 0.8rem;
  }
  .closing-banner-cta {
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
  }
}
