/* ============================================================
   Bridge to Bold — Donor page holding / stay-tuned
   ============================================================ */

:root {
  --navy: #0d1b2a;
  --navy-deep: #08121c;
  --gold: #b8923a;
  --gold-soft: #cba54c;
  --white: #ffffff;
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body.donate-hold {
  font-family: var(--font-sans);
  color: var(--white);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.hold {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hold__media,
.hold__shade {
  position: absolute;
  inset: 0;
}

.hold__media {
  z-index: 0;
}

.hold__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.1);
  filter: saturate(1.05) contrast(1.04);
  animation: holdZoom 28s var(--ease) forwards;
}

@keyframes holdZoom {
  to {
    transform: scale(1);
  }
}

.hold__shade {
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(8, 18, 28, 0.15) 0%, rgba(8, 18, 28, 0.72) 70%, rgba(8, 18, 28, 0.92) 100%),
    linear-gradient(180deg, rgba(8, 18, 28, 0.45) 0%, rgba(8, 18, 28, 0.55) 40%, rgba(8, 18, 28, 0.9) 100%);
}

.hold__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, 42rem);
  padding: 4rem 0 3.5rem;
  text-align: center;
}

.hold__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: holdRise 0.9s var(--ease) 0.15s forwards;
}

.hold__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 10px 28px rgba(184, 146, 58, 0.35);
}

.hold__brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}

.hold__brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hold__rule {
  width: 3rem;
  height: 2px;
  margin: 0 auto 1.85rem;
  background: var(--gold);
  opacity: 0;
  animation: holdRise 0.9s var(--ease) 0.35s forwards;
}

.hold__message {
  margin: 0 auto;
  max-width: 34rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.2vw, 1.95rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.94);
  opacity: 0;
  animation: holdRise 1s var(--ease) 0.5s forwards;
}

.hold__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: holdRise 0.9s var(--ease) 0.75s forwards;
}

.hold__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.55rem 1.45rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s;
}

.hold__btn:hover {
  transform: translateY(-1px);
}

.hold__btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(184, 146, 58, 0.35);
}

.hold__btn--gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.hold__btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hold__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.hold__footer {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  opacity: 0;
  animation: holdRise 0.8s var(--ease) 1s forwards;
}

@keyframes holdRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .hold__content {
    width: min(100% - 2rem, 42rem);
    padding: 3.5rem 0 5.5rem;
  }

  .hold__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hold__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hold__media img,
  .hold__brand,
  .hold__rule,
  .hold__message,
  .hold__actions,
  .hold__footer {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
