/* ============================================================
   Delta Crown Extensions — White-Glove Onboarding Section
   The "Day one in five moments" centerpiece. Editorial scrollytelling
   that makes the platform feel like a velvet keycard, not a PDF.
   ============================================================ */

.whiteglove {
  padding: clamp(90px, 14vh, 140px) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 168, 75, 0.12), transparent 32%),
    radial-gradient(circle at 92% 88%, rgba(0, 107, 94, 0.18), transparent 36%),
    #0F1B19;
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

.whiteglove::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 27, 25, 0.92) 0%, transparent 18%, transparent 82%, rgba(15, 27, 25, 0.92) 100%);
  pointer-events: none;
}

.whiteglove > .container {
  position: relative;
  z-index: 1;
}

.whiteglove .label {
  color: var(--gold-light);
}

.whiteglove h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.01em;
}

.whiteglove__lead {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 64px;
  line-height: 1.55;
}

/* ----- Sequence ----- */
.whiteglove__sequence {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.whiteglove__sequence::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 32px;
  bottom: 96px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(212, 168, 75, 0.42) 0%,
    rgba(212, 168, 75, 0.18) 60%,
    rgba(212, 168, 75, 0) 100%
  );
}

.whiteglove__moment {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  padding: 36px 0;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.whiteglove__moment:first-child {
  border-top: none;
  padding-top: 12px;
}

.whiteglove__moment--final {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.whiteglove__moment::after {
  content: '';
  position: absolute;
  left: 54px;
  top: 50px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(212, 168, 75, 0.28);
  box-shadow: 0 0 0 0 rgba(212, 168, 75, 0);
  transition: background 260ms var(--ease-out), box-shadow 260ms var(--ease-out), transform 260ms var(--ease-out);
  z-index: 3;
}

.whiteglove__moment.is-active::after {
  background: var(--gold-light);
  box-shadow: 0 0 0 9px rgba(212, 168, 75, 0.14), 0 0 48px rgba(212, 168, 75, 0.24);
  transform: scale(1.08);
}

.whiteglove__moment.is-active .whiteglove__body h3 {
  color: var(--gold-light);
}

.whiteglove__moment.is-active .whiteglove__chip {
  border-color: rgba(212, 168, 75, 0.46);
  background: rgba(212, 168, 75, 0.12);
}

.whiteglove__num {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  background: #0F1B19;
  padding: 4px 0;
  width: 120px;
  text-align: left;
}

.whiteglove__moment--final .whiteglove__num {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.whiteglove__body {
  max-width: 720px;
}

.whiteglove__body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  color: #FFF;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  text-wrap: balance;
}

.whiteglove__body p {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 640px;
}

.whiteglove__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.whiteglove__chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 168, 75, 0.28);
  color: rgba(255, 255, 255, 0.78);
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.whiteglove__chip:hover {
  background: rgba(212, 168, 75, 0.14);
  border-color: rgba(212, 168, 75, 0.5);
  transform: translateY(-1px);
}

/* ----- Bridge / closing thought ----- */
.whiteglove__bridge {
  margin-top: 64px;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.1), rgba(0, 107, 94, 0.14));
  border: 1px solid rgba(212, 168, 75, 0.22);
  border-radius: 22px;
  max-width: 820px;
}

.whiteglove__bridge p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
  margin-bottom: 14px;
}

.whiteglove__bridge p:last-child {
  margin-bottom: 0;
}

.whiteglove__bridge strong {
  color: #FFF;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.whiteglove__bridge-link a {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 168, 75, 0.35);
  padding-bottom: 2px;
  transition: border-color 200ms var(--ease-out), color 200ms var(--ease-out);
}

.whiteglove__bridge-link a:hover {
  color: #FFF;
  border-color: var(--gold-light);
}

/* ----- Responsive ----- */
@media (max-width: 640px) {
  .whiteglove__sequence::before {
    left: 24px;
    top: 24px;
    bottom: 80px;
  }

  .whiteglove__moment {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }

  .whiteglove__moment::after {
    left: 18px;
    top: 39px;
    width: 10px;
    height: 10px;
  }

  .whiteglove__num {
    width: auto;
    background: transparent;
    font-size: 2.2rem;
  }

  .whiteglove__body h3 {
    font-size: 1.4rem;
  }
}

/* ============================================================
   Portfolio: consolidated "future brands" card (replaces three
   identical cards with one card containing brand chips)
   ============================================================ */

.portfolio__brand--future {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  border-style: dashed;
}

.portfolio__future-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 12px;
}

.portfolio__chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.66);
}
