@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Quicksand:wght@400;600;700&family=Sacramento&display=swap");

:root {
  --blush: #fbeced;
  --ink: #201f3d;
  --rose: #e78aa9;
  --rose-deep: #d76d94;
  --muted: #6b6383;
  --white: #ffffff;
}

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

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

body {
  font-family: Quicksand, system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff5f7 0%, var(--blush) 42%, #f8dfe6 100%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.holding {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 32px;
}

.holding__card {
  width: min(560px, 100%);
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #f2cdd6;
  border-radius: 20px;
  padding: 42px 32px 36px;
  box-shadow: 0 22px 50px rgba(32, 31, 61, 0.1);
}

.holding__logo {
  display: block;
  margin: 0 auto 10px;
  max-width: 200px;
  height: auto;
}

.holding__script {
  display: block;
  margin: 0 0 24px;
  font-family: Sacramento, cursive;
  font-size: 1.65rem;
  color: var(--rose);
  line-height: 1;
}

.holding__badge {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.holding h1 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.holding__lead {
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.holding__status {
  margin: 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink) 0%, #3f3a56 100%);
  color: #f6d9e2;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.holding-footer {
  padding: 20px 24px 28px;
  text-align: center;
}

.holding-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.holding-footer__credit img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.holding-footer__credit strong {
  color: var(--ink);
  font-weight: 600;
}
