/* Dulce Bonito — luxury section heroes, glow cards, collection redesign */

:root {
  --rose-gold: linear-gradient(105deg, #f5d5b8 0%, #e8b88a 22%, #d4956c 48%, #c97b7b 72%, #9a4d5a 100%);
  --rose-gold-text: linear-gradient(105deg, #fce8d4 0%, #e8b88a 35%, #d4a574 55%, #c9956a 80%, #e8c4c8 100%);
}

/* Bottom glow — subtle, per-block color */
.glow-under--rose,
.glow-under--amber,
.glow-under--violet,
.glow-under--sage,
.glow-under--plum,
.glow-under--cyan,
.glow-under--magenta {
  position: relative;
  isolation: isolate;
}

.glow-under--rose::after,
.glow-under--amber::after,
.glow-under--violet::after,
.glow-under--sage::after,
.glow-under--plum::after,
.glow-under--cyan::after,
.glow-under--magenta::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -10px;
  height: 28px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

.glow-under--rose::after { background: rgba(232, 184, 138, 0.75); }
.glow-under--amber::after { background: rgba(251, 191, 36, 0.65); }
.glow-under--violet::after { background: rgba(167, 139, 250, 0.6); }
.glow-under--sage::after { background: rgba(52, 211, 153, 0.55); }
.glow-under--plum::after { background: rgba(190, 74, 111, 0.6); }
.glow-under--cyan::after { background: rgba(96, 165, 250, 0.55); }
.glow-under--magenta::after { background: rgba(251, 113, 133, 0.6); }

/* Section hero shell */
.db-section-wrap {
  padding-top: clamp(0.5rem, 2vw, 1.25rem);
  padding-bottom: clamp(0.25rem, 1.5vw, 0.75rem);
}

.db-section-hero {
  width: 100%;
  border-radius: var(--radius-lg, 22px);
  border: 1px solid rgba(201, 162, 126, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 42%, rgba(120, 40, 80, 0.06) 100%);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.db-section-hero__ribbon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  background: var(--rose-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a0a12;
}

.db-section-hero__ribbon::before {
  content: "✦";
  font-size: 0.75rem;
  opacity: 0.85;
}

.db-section-hero__body {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem) clamp(1.5rem, 3.5vw, 2.25rem);
}

.db-section-hero .section-head {
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
}

.db-section-hero .section-head h2,
.db-gradient-heading {
  background: var(--rose-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Hero band — taller + glow */
.hero-band__inner {
  min-height: clamp(22rem, 44vh, 28.6rem);
  padding: clamp(1.65rem, 3.85vw, 2.75rem) clamp(1.5rem, 3.5vw, 2.75rem);
}

.hero-stats-section .luxe-side {
  margin-top: 0.25rem;
}

/* Collection plan cards — row layout, pricing-card style, rose-gold */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1rem);
  align-items: stretch;
}

@media (max-width: 1180px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cat-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 22.5rem;
  text-decoration: none;
  color: inherit;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(14, 10, 24, 0.88) 0%, rgba(8, 6, 16, 0.92) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s;
}

.cat-plan--featured {
  border-color: rgba(232, 184, 138, 0.55);
  box-shadow: 0 20px 48px rgba(190, 74, 111, 0.18), 0 0 0 1px rgba(232, 184, 138, 0.2);
}

.cat-plan:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 184, 138, 0.4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.cat-plan__ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(233, 213, 255, 0.75);
}

.cat-plan__ribbon--featured {
  background: var(--rose-gold);
  color: #1a0a12;
  border-bottom: none;
}

.cat-plan__ribbon--featured::before {
  content: "★";
  font-size: 0.65rem;
}

.cat-plan__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.85rem 0.85rem 0.95rem;
  gap: 0.45rem;
}

.cat-plan__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.cat-plan--featured .cat-plan__title {
  background: var(--rose-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cat-plan__sub {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(233, 213, 255, 0.72);
  min-height: 2.1rem;
}

.cat-plan__media {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 0.25rem 0 0.35rem;
}

.cat-plan__media .cat-card__media.media-slot {
  width: 100%;
  min-height: 9.5rem;
  margin: 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.cat-plan__media .cat-card__media.media-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cat-plan__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 0.62rem 0.75rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: background 0.22s, transform 0.22s;
}

.cat-plan__cta--featured,
.cat-plan:hover .cat-plan__cta--featured {
  background: var(--rose-gold);
  border: none;
  color: #1a0a12;
  box-shadow: 0 8px 20px rgba(190, 74, 111, 0.25);
}

.cat-plan:hover .cat-plan__cta:not(.cat-plan__cta--featured) {
  background: rgba(232, 184, 138, 0.15);
  border-color: rgba(232, 184, 138, 0.35);
}

/* Per-card tint glow at bottom */
.cat-plan--kilts::after,
.cat-plan--acc::after,
.cat-plan--dress::after,
.cat-plan--inst::after,
.cat-plan--bespoke::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 0;
  height: 1px;
  box-shadow: 0 8px 24px 4px rgba(232, 184, 138, 0.15);
  pointer-events: none;
}

.cat-plan--acc::after { box-shadow: 0 10px 28px 6px rgba(232, 184, 138, 0.35); }
.cat-plan--dress::after { box-shadow: 0 8px 24px 4px rgba(96, 165, 250, 0.2); }
.cat-plan--inst::after { box-shadow: 0 8px 24px 4px rgba(52, 211, 153, 0.2); }
.cat-plan--bespoke::after { box-shadow: 0 8px 24px 4px rgba(167, 139, 250, 0.22); }

/* Gallery — cinematic showcase */
.gallery-luxe-wrap {
  position: relative;
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
  padding: 0.35rem 0 0.5rem;
}

.gallery-luxe__ambient {
  position: absolute;
  inset: 5% 8% 15%;
  background:
    radial-gradient(ellipse 55% 45% at 18% 40%, rgba(232, 184, 138, 0.18), transparent 70%),
    radial-gradient(ellipse 40% 35% at 82% 65%, rgba(190, 74, 111, 0.12), transparent 72%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.gallery-luxe {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(13.5rem, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1rem);
  min-height: clamp(28rem, 52vh, 38rem);
}

.gallery-luxe__tile {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  min-height: 14rem;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 126, 0.28);
  background: #0a0612;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s ease, border-color 0.35s, filter 0.35s;
}

.gallery-luxe__tile::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(232, 184, 138, 0.22);
  border-radius: 0.85rem;
  pointer-events: none;
  z-index: 3;
  opacity: 0.65;
  transition: opacity 0.35s, border-color 0.35s;
}

.gallery-luxe__tile--hero {
  grid-column: 1;
  grid-row: 1 / -1;
  min-height: 100%;
  border-color: rgba(232, 184, 138, 0.48);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.38),
    0 0 48px rgba(232, 184, 138, 0.1),
    inset 0 0 0 1px rgba(232, 184, 138, 0.15);
}

.gallery-luxe__tile:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-luxe__tile:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-luxe__tile:nth-child(4) { grid-column: 2; grid-row: 2; }
.gallery-luxe__tile:nth-child(5) { grid-column: 3; grid-row: 2; }

.gallery-luxe__tile--hero::after {
  inset: 12px;
  border-color: rgba(232, 184, 138, 0.38);
  opacity: 0.85;
}

.gallery-luxe__tile:not(.gallery-luxe__tile--hero):hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(232, 184, 138, 0.55);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38), 0 0 28px rgba(232, 184, 138, 0.14);
  z-index: 2;
}

.gallery-luxe__tile:not(.gallery-luxe__tile--hero):hover::after {
  opacity: 1;
  border-color: rgba(232, 184, 138, 0.45);
}

.gallery-luxe__tile--hero:hover {
  border-color: rgba(232, 184, 138, 0.62);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.42), 0 0 56px rgba(232, 184, 138, 0.16);
}

.gallery-luxe__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gallery-luxe__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.gallery-luxe__tile--hero .gallery-luxe__frame img {
  animation: gallery-kenburns 18s ease-in-out infinite alternate;
}

@keyframes gallery-kenburns {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-2%); }
}

.gallery-luxe__tile:hover .gallery-luxe__frame img {
  transform: scale(1.07);
  filter: brightness(1.08) saturate(1.1);
}

.gallery-luxe__tile--hero:hover .gallery-luxe__frame img {
  animation: none;
  transform: scale(1.04);
}

.gallery-luxe__tile--hero .gallery-luxe__vignette {
  background:
    linear-gradient(0deg, rgba(8, 4, 14, 0.9) 0%, rgba(8, 4, 14, 0.35) 38%, transparent 62%),
    linear-gradient(90deg, rgba(8, 4, 14, 0.25) 0%, transparent 50%);
}

.gallery-luxe__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 4, 14, 0.75) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.gallery-luxe__tile:not(.gallery-luxe__tile--hero) .gallery-luxe__vignette {
  background: linear-gradient(0deg, rgba(8, 4, 14, 0.88) 0%, transparent 55%);
}

.gallery-luxe__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.14) 0%,
    transparent 40%,
    transparent 60%,
    rgba(232, 184, 138, 0.1) 100%
  );
  pointer-events: none;
  z-index: 2;
  opacity: 0.75;
}

.gallery-luxe__corners {
  position: absolute;
  inset: 14px;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(#e8b88a, #e8b88a) left top / 28px 2px no-repeat,
    linear-gradient(#e8b88a, #e8b88a) left top / 2px 28px no-repeat,
    linear-gradient(#e8b88a, #e8b88a) right bottom / 28px 2px no-repeat,
    linear-gradient(#e8b88a, #e8b88a) right bottom / 2px 28px no-repeat;
  opacity: 0.75;
}

.gallery-luxe__hero-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding: clamp(1.35rem, 2.8vw, 2.25rem);
  gap: 0.45rem;
}

.gallery-luxe__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--rose-gold);
  color: #1a0a12;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(190, 74, 111, 0.28);
}

.gallery-luxe__hero-panel .gallery-luxe__num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(232, 184, 138, 0.95);
}

.gallery-luxe__name--hero {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem) !important;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: var(--rose-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}

.gallery-luxe__meta {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(233, 213, 255, 0.82);
  letter-spacing: 0.03em;
}

.gallery-luxe__pill {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.65rem;
  height: 1.65rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: var(--rose-gold);
  color: #1a0a12;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.gallery-luxe__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 5;
  padding: 1rem 0.9rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: translateY(0.5rem);
  opacity: 0.88;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-luxe__tile:not(.gallery-luxe__tile--hero):hover .gallery-luxe__overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-luxe__name {
  margin: 0;
  font-size: clamp(0.8rem, 1.05vw, 0.92rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.gallery-luxe__cta {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 184, 138, 0.35);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s;
}

.gallery-luxe__tile:not(.gallery-luxe__tile--hero):hover .gallery-luxe__cta {
  opacity: 1;
  transform: translateY(0);
  background: var(--rose-gold);
  border-color: transparent;
  color: #1a0a12;
}

.gallery-luxe__cta--hero {
  opacity: 1;
  transform: none;
  margin-top: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
  background: var(--rose-gold);
  border: none;
  color: #1a0a12;
  box-shadow: 0 10px 28px rgba(190, 74, 111, 0.3);
}

.gallery-luxe__cta--hero:hover {
  box-shadow: 0 12px 32px rgba(190, 74, 111, 0.38);
}

@media (max-width: 960px) {
  .gallery-luxe {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    min-height: auto;
  }

  .gallery-luxe__tile--hero {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: clamp(22rem, 58vw, 28rem);
  }

  .gallery-luxe__tile:nth-child(2),
  .gallery-luxe__tile:nth-child(3),
  .gallery-luxe__tile:nth-child(4),
  .gallery-luxe__tile:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-luxe__tile:not(.gallery-luxe__tile--hero) {
    min-height: 12.5rem;
  }

  .gallery-luxe__cta {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  .gallery-luxe {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-luxe__tile--hero .gallery-luxe__frame img {
    animation: none;
  }
}

/* Why Dulce Bonito — liquid glass showcase (full 90vw band, fluid mobile → 4K) */
.why-liquid {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding: clamp(0.5rem, 2vw, 1.25rem) 0;
  overflow: hidden;
  box-sizing: border-box;
}

.why-liquid__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.why-liquid__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 163, 184, 0.22) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 85%);
}

.why-liquid__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
}

.why-liquid__blob--blue {
  width: clamp(16rem, 38vw, 28rem);
  height: clamp(16rem, 38vw, 28rem);
  left: -6%;
  top: 18%;
  background: rgba(96, 165, 250, 0.45);
}

.why-liquid__blob--peach {
  width: clamp(18rem, 42vw, 32rem);
  height: clamp(18rem, 42vw, 32rem);
  right: 8%;
  top: 8%;
  background: rgba(232, 184, 138, 0.38);
}

.why-liquid__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2.75rem) clamp(1.25rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg, 22px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(160deg, rgba(22, 14, 34, 0.92) 0%, rgba(12, 8, 22, 0.88) 48%, rgba(16, 10, 28, 0.9) 100%);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  box-sizing: border-box;
}

.why-liquid__inner::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg, 22px) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.why-liquid__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 18%,
    transparent 82%,
    rgba(0, 0, 0, 0.12) 100%
  );
  pointer-events: none;
}

.why-liquid__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: min(92%, 52rem);
  margin: 0 auto var(--space-lg, clamp(1.5rem, 3vw, 2.5rem));
}

.why-liquid__eyebrow {
  color: #d4a017;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: var(--text-xs, 0.68rem);
}

.why-liquid__head h2 {
  margin: 0;
  font-size: var(--text-h2, clamp(1.45rem, 2.2vw + 1rem, 2.85rem));
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.why-liquid__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap, clamp(0.75rem, 1.5vw, 1.5rem));
  width: 100%;
}

.why-liquid__card {
  position: relative;
  padding: clamp(1.15rem, 2vw, 1.55rem) clamp(1.15rem, 2.2vw, 1.5rem);
  border-radius: var(--radius-md, 16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(8, 4, 14, 0.35) 100%),
    rgba(14, 10, 24, 0.78);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.why-liquid__card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-md, 16px) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.why-liquid__card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 184, 138, 0.32);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.why-liquid__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.why-liquid__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.why-liquid__icon--gold {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.22);
}

.why-liquid__icon--violet {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.22);
}

.why-liquid__icon--amber {
  color: #fb923c;
  background: rgba(251, 146, 60, 0.1);
  border-color: rgba(251, 146, 60, 0.22);
}

.why-liquid__card h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.why-liquid__card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(203, 213, 225, 0.82);
}

@media (max-width: 960px) {
  .why-liquid__cards {
    grid-template-columns: 1fr;
  }
}

html[data-theme="light"] .why-liquid__inner {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 100%);
  border-color: rgba(26, 16, 36, 0.14);
  box-shadow:
    0 20px 48px rgba(26, 16, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] .why-liquid__head h2 {
  color: var(--text);
}

html[data-theme="light"] .why-liquid__card {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 100%);
  border-color: rgba(26, 16, 36, 0.12);
  box-shadow:
    0 10px 28px rgba(26, 16, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

html[data-theme="light"] .why-liquid__card h3 {
  color: var(--text);
}

html[data-theme="light"] .why-liquid__card p {
  color: var(--muted);
}

/* Why + flow cards inside section hero */
.luxe-feature-grid .glass-card,
.timeline .step {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 6, 18, 0.45);
}

.luxe-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
}

@media (max-width: 960px) {
  .luxe-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .luxe-feature-grid {
    grid-template-columns: 1fr;
  }
}

.luxe-feature-grid .glass-card:nth-child(1) { box-shadow: 0 12px 32px rgba(251, 113, 133, 0.12); }
.luxe-feature-grid .glass-card:nth-child(2) { box-shadow: 0 12px 32px rgba(251, 191, 36, 0.12); }
.luxe-feature-grid .glass-card:nth-child(3) { box-shadow: 0 12px 32px rgba(96, 165, 250, 0.12); }

.timeline .step:nth-child(1) { box-shadow: 0 12px 32px rgba(251, 146, 60, 0.12); }
.timeline .step:nth-child(2) { box-shadow: 0 12px 32px rgba(52, 211, 153, 0.12); }
.timeline .step:nth-child(3) { box-shadow: 0 12px 32px rgba(167, 139, 250, 0.12); }

/* Stats panels — per-panel glow */
.luxe-panel.glow-under--rose::after,
.luxe-panel.glow-under--amber::after,
.luxe-panel.glow-under--cyan::after {
  bottom: -6px;
  height: 20px;
  opacity: 0.45;
}
