.final-party-page {
  --fp-ink: #1a2430;
  --fp-muted: #5b6674;
  --fp-gold: #d4a017;
  --fp-cream: #f7f1e4;
  --fp-paper: #fffaf2;
  --fp-green: #168f2f;
  background:
    radial-gradient(1100px 420px at 8% -8%, rgba(212, 160, 23, 0.2), transparent 55%),
    radial-gradient(800px 380px at 100% 6%, rgba(22, 143, 47, 0.1), transparent 50%),
    linear-gradient(180deg, #fbf7ee 0%, #fff 46%, #f7f1e4 100%);
  color: var(--fp-ink);
}

.fp-hero {
  position: relative;
  min-height: min(52vh, 460px);
  display: grid;
  place-items: end center;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  background: #1a2430;
  margin-bottom: 0;
}

.fp-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.fp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 26, 0.12) 0%, rgba(12, 18, 26, 0.42) 48%, rgba(12, 18, 26, 0.88) 100%);
}

.fp-hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 32px));
  padding: 0 0 40px;
  color: #fffaf2;
}

.fp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 120, 0.45);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffe9a8;
}

.fp-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(1.7rem, 4.2vw, 2.8rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.fp-hero-lead {
  margin: 0 0 18px;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 250, 242, 0.9);
}

.fp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.fp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fffaf2 !important;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none !important;
}

.fp-hero-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff !important;
}

.fp-wrap {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.fp-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: -42px 0 1.4rem;
  position: relative;
  z-index: 2;
}

.fp-fact {
  background: var(--fp-paper);
  border: 1px solid rgba(212, 160, 23, 0.28);
  border-radius: 20px;
  padding: 1.05rem 1.15rem;
  box-shadow: 0 16px 36px rgba(26, 36, 48, 0.1);
}

.fp-fact-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #a07800;
  margin-bottom: 0.35rem;
}

.fp-fact-value {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.fp-fact-sub {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fp-muted);
}

.fp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 1.15rem;
  align-items: start;
}

.fp-card {
  background: var(--fp-paper);
  border: 1px solid rgba(26, 36, 48, 0.08);
  border-radius: 22px;
  padding: 1.25rem 1.3rem 1.35rem;
  box-shadow: 0 12px 28px rgba(26, 36, 48, 0.06);
  margin-bottom: 1.15rem;
}

.fp-card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.fp-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2a3340;
  white-space: pre-line;
}

.fp-highlights {
  display: grid;
  gap: 0.75rem;
}

.fp-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  background: rgba(212, 160, 23, 0.1);
}

.fp-highlight.is-green {
  background: rgba(22, 143, 47, 0.1);
}

.fp-highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #a07800;
  font-size: 1.05rem;
}

.fp-highlight.is-green .fp-highlight-icon {
  color: var(--fp-green);
}

.fp-highlight strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.fp-highlight p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #3a4450;
}

.fp-place-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.fp-place-addr {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.fp-place-meta {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: var(--fp-muted);
}

.fp-map {
  margin-top: 0.9rem;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
  background: #efe6d4;
}

.fp-map-frame {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.fp-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.fp-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f3c84a, #d4a017);
  color: #3d2800 !important;
  font-weight: 800;
  text-decoration: none !important;
}

.fp-map-btn.secondary {
  background: #fff;
  border: 1px solid rgba(26, 36, 48, 0.12);
  color: var(--fp-ink) !important;
}

.fp-players {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.fp-player {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.7rem 0.28rem 0.28rem;
  border-radius: 999px;
  background: #1a2430;
  color: #fffaf2;
  font-size: 0.86rem;
  font-weight: 700;
}

.fp-player img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.fp-rsvp {
  position: sticky;
  top: 84px;
}

.fp-rsvp-lead {
  color: var(--fp-muted);
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.fp-rsvp .btn {
  font-weight: 800;
  border-radius: 999px;
  padding: 0.7rem 1rem;
}

.fp-attend-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

@media (max-width: 900px) {
  .fp-facts,
  .fp-grid {
    grid-template-columns: 1fr;
  }
  .fp-rsvp {
    position: static;
  }
  .fp-hero {
    min-height: min(46vh, 380px);
    border-radius: 0 0 24px 24px;
  }
}
