
    /* ── Logo ── */
    .logo-wrap {
      width: 100%;
      display: flex;
      justify-content: center;
      margin: 22px 0 22px 0;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards;
      animation-delay: 0.05s;
    }

    .logo-wrap img {
      width: 220px;
      height: auto;
      object-fit: contain;
    }

    /* ── Photo ── */
    .photo-wrap {
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards;
      animation-delay: 0.15s;
    }

    .photo-wrap img {
      width: 220px;
      height: 220px;
      object-fit: cover;
      border-radius: 16px;
      display: block;
      box-shadow: 0 8px 28px rgba(220, 129, 153, 0.22);
    }

    .description {
      text-align: center;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards;
      animation-delay: 0.25s;
    }

    .description p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-weight: 300;
      line-height: 1.6;
      color: var(--color-text-muted);
      font-style: italic;
    }

    .description p strong {
      font-style: normal;
      font-weight: 500;
      color: var(--color-text);
    }

    /* ── Divider ── */
    .divider {
      width: 40px;
      height: 1px;
      background: var(--color-secondary);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards;
      animation-delay: 0.3s;
    }

    /* ── Buttons ── */
    .buttons {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .btn {
      display: flex;
      align-items: center;
      gap: 13px;
      width: 100%;
      height: 52px;
      padding: 0 20px;
      border-radius: 12px;
      text-decoration: none;
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
      cursor: pointer;
      border: none;
      opacity: 0;
      animation: fadeUp 0.5s ease forwards;
    }

    .btn:nth-child(1) { animation-delay: 0.35s; }
    .btn:nth-child(2) { animation-delay: 0.42s; }
    .btn:nth-child(3) { animation-delay: 0.49s; }
    .btn:nth-child(4) { animation-delay: 0.56s; }
    .btn:nth-child(5) { animation-delay: 0.63s; }

    .btn:active {
      transform: scale(0.97);
      opacity: 0.88;
    }

    .btn-primary {
      background: var(--color-primary);
      color: white;
      box-shadow: 0 4px 16px rgba(220, 129, 153, 0.30);
    }

    .btn-primary:hover {
      box-shadow: 0 6px 22px rgba(220, 129, 153, 0.42);
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: var(--color-secondary);
      color: var(--color-text);
      box-shadow: 0 2px 10px rgba(220, 129, 153, 0.10);
    }

    .btn-secondary:hover {
      box-shadow: 0 4px 16px rgba(220, 129, 153, 0.20);
      transform: translateY(-1px);
    }

    .btn-icon {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-text {
      flex: 1;
    }

    /* ── Footer ── */
    .footer {
      margin-top: 28px;
      opacity: 0;
      animation: fadeUp 0.5s ease forwards;
      animation-delay: 0.72s;
    }

    .footer p {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 400;
      color: var(--color-text-muted);
      text-align: center;
      line-height: 1.5;
    }